Skip to content

lesskop/file-sorter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

File sorter

GitHub last commit GitHub repo size GitHub pull requests Stars

YouTube Video Views

Python script for sorting files into folders by extensions

Quick start

  1. Open config.py and write the path to the folder where the sort will be performed:
FOLDER_PATH = Path('drive:/folder/another-folder/yet-another-folder')

Example

FOLDER_PATH = Path('D:/Downloads')
  1. Set up a dictionary SUBFOLDER_NAME_TO_EXTENSIONS for your sorting method.

Key - subfolder name, value - tuple of file extensions for this subfolder.

SUBFOLDER_NAME_TO_EXTENSIONS = {
    'video': ('mp4', 'mov', 'avi', 'mkv', 'wmv', 'mpg', 'mpeg', 'm4v', 'h264'),
    'audio': ('mp3', 'wav', 'ogg', 'flac', 'aif', 'mid', 'midi', 'wma'),
    'image': ('jpg', 'png', 'bmp', 'jpeg', 'svg', 'tif', 'tiff'),
    'archive': ('zip', 'rar', '7z', 'z', 'gz', 'pkg', 'deb'),
    'text': ('pdf', 'txt', 'doc', 'docx', 'rtf', 'odt'),
    'spreadsheet': ('xlsx', 'xls', 'xlsm'),
    'presentation': ('pptx', 'ppt'),
    'book': ('fb2', 'epub', 'mobi'),
    'gif': ('gif',),
    # 'subfolder-name': ('extension', 'another-extension')
}

Logs

You can check the logs in logs/file_sorter.log after script execution.

[18:08:01] INFO - Sorting files by extensions in d:\downloads
[18:08:01] INFO - winrar.zip ---> archive/winrar.zip
[18:08:01] INFO - cute cat.png ---> image/cute cat.png
[18:08:01] INFO - dissertation.docx ---> text/dissertation.docx
[18:08:01] INFO - Morbius.mkv ---> video/Morbius.mkv
[18:08:01] INFO - mvp.pptx ---> presentation/mvp.pptx
[18:08:01] INFO - salary.xlsx ---> spreadsheet/salary.xlsx
[18:08:01] INFO - there are no passwords.txt ---> text/there are no passwords.txt
[18:08:01] INFO - Script execution time: 0.01600000000144064 seconds

Content

I did a general refactoring for this project so this content is out of date.

YouTube video

Статья на Хабре

About

Sorting files by extensions with Python

Topics

Resources

Stars

Watchers

Forks

Languages