updating functionlity for directory organizer

This commit is contained in:
Deepak Raj 2022-09-21 05:19:05 +05:30
parent c4bef279f2
commit 6aa0a7b709

View File

@ -1,61 +1,61 @@
#!/usr/bin/python3 #!/usr/bin/python3
import argparse from shutil import move
from os import path
import os import os
def path(): folder_ex = {
parse = argparse.ArgumentParser( 'Programming Files': set(['ipynb', 'py', 'java', 'cs', 'js', 'vsix', 'jar', 'cc', 'ccc', 'html', 'xml', 'kt']),
add_help=True, description="Organize your files to different directories according to their type") 'Compressed': set(['zip', 'rar', 'arj', 'gz', 'sit', 'sitx', 'sea', 'ace', 'bz2', '7z']),
parse.add_argument('directory_path', type=str, default='./', 'Applications': set(['exe', 'msi', 'deb', 'rpm']),
help="The absolute path to the directory") 'Pictures': set(['jpeg', 'jpg', 'png', 'gif', 'tiff', 'raw', 'webp', 'jfif', 'ico', 'psd', 'svg', 'ai']),
return parse.parse_args().directory_path 'Videos': set(['mp4', 'webm', 'mkv', 'MPG', 'MP2', 'MPEG', 'MPE', 'MPV', 'OGG', 'M4P', 'M4V', 'WMV', 'MOV', 'QT', 'FLV', 'SWF', 'AVCHD', 'avi', 'mpg', 'mpe', 'mpeg', 'asf', 'wmv', 'mov', 'qt', 'rm']),
'Documents': set(['txt', 'pdf', 'doc', 'xlsx', 'pdf', 'ppt', 'pps', 'docx', 'pptx']),
'Music': set(['mp3', 'wav', 'wma', 'mpa', 'ram', 'ra', 'aac', 'aif', 'm4a', 'tsa']),
'Torrents': set(['torrent']),
'Other': set([])
}
documents = ['.log', '.txt', '.doc', '.docx', '.md', '.pdf', '.wps'] def create_folders():
picture = ['.png', '.jpg', 'jpeg', '.bmp'] '''Creates the required folders to organize files ('Pictures', 'Videos'..).
music = ['.mp3', '.wav'] '''
compressed = ['.zip', '.rar', '.tar', '.gz', '.bz2', '.xz'] for root in folder_ex:
video = ['.3gp', '.mov', '.mp4', '.mkv', '.srt', '.avi'] try:
web = ['.html', .'.css', '.js'] os.mkdir(root)
source = ['.py', '.c', '.cpp', '.java',] print(f'{root:20} Created ✔')
except OSError:
print(f'{root:20} Already Exists')
directories = [path() + '/Compressed', path() + '/Documents', def get_folder(ext):
path() + '/Pictures', path() + '/Music', path() + '/Video', path() + '/Web', path() + '/Source-codes',] '''Returns the Folder that corresponds to the given extension.
print("This will organize your files to different directories according to their type!!") Args:
print("Are you sure you want to continue? (y/n)") ext (String): The extension of the file.
flag = input('>>>')
if flag.lower() == 'y':
try:
for d in directories:
os.mkdir(d)
except FileExistsError:
pass
for files in os.listdir(path()): Returns:
dot = (files.rfind('.')) String: The name of the Folder that holds the ext.
if dot is not 0 and dot is not -1: '''
if files[dot:].lower() in music: for f, ex in folder_ex.items():
os.rename(path() + '/' + files, path() + '/Music/' + files) if ext in ex:
if files[dot:].lower() in picture: return f
os.rename(path() + '/' + files, path() + '/Pictures/' + files) return 'Other'
if files[dot:].lower() in documents:
os.rename(path() + '/' + files, path() + '/Documents/' + files)
if files[dot:].lower() in compressed:
os.rename(path() + '/' + files, path() +
'/Compressed/' + files)
if files[dot:].lower() in video:
os.rename(path() + '/' + files, path() + '/Video/' + files)
if files[dot:].lower() in web:
os.rename(path() + '/' + files, path() + '/Web/' + files)
if files[dot:].lower() in source:
os.rename(path() + '/' + files, path() + '/Source-codes/' + files)
for d in directories:
if os.listdir(d) is None: def start():
os.removedirs(d) '''Organize files on the current directory, each to the corresponding folder.
else: '''
print("Exiting") for filename in os.listdir():
os.sys.exit(0) # Check it's not filemover.py, a hidden file or a directory
if filename != __file__ and filename[0] != '.' and '.' in filename:
ext = os.path.basename(filename).split('.')[-1]
folder = get_folder(ext)
if not os.path.isfile(os.path.join(folder, filename)):
move(filename, folder)
if __name__ == '__main__':
create_folders()
start()