FileManager
FileManager copied to clipboard
File-Manager | GUI Desktop Application made in Python using PyQt5
FileManager
Files:
GUI.pyis the Graphical Interface version.FileManager.pyis the Command Line version.
Setup:
GUI File Manager:
Before use, please install PyQt5 please run the following command in the python terminal.
- Windows:
pip install pyqt5 zipfile bz2 subprocess - MacOs:
sudo pip3 install pyqt5 zipfile bz2 subprocess
Functions you can perform on files/folders:
- Search through computer or specific paths
- Directly open files
- Move files into folders
- Rename files
- Select multiple files
- Copy files
- Delete Files
- Create new folders
- Compress both files and folders to ZIP or BZ2 formats
- Batch rename multiple files with naming pattern
- Get File details (path, size, last modified data and creation date)
Troubleshooting (MacOS):
PyQt5 didn't install properly:
Traceback (most recent call last):
File "/Users/tristan/Desktop/Programming/FileManager/FileManager/GUI.py", line 5, in <module>
from PyQt5.QtWidgets import *
Install brew and use the following command:
brew install pyqt5