Skip to main content

Organize files with one simple command

Project description

PickItUp

Super-simple way to categorize files in a messy directory. And it's only 4 KB!

PickItUp can categorize files by:

  • File type(video,photo,archive etc.)
  • Size of file
  • Last modification date

How To Install

  1. If pip is not installed sudo apt install pip3
  2. Install pickitup package with pip3 install pickitup
  3. Open your folder in terminal and run pickitup (Don't run program in /home folder :) )

How It Works:

  1. Lists all files in directory (os.listdir)
files = os.listdir(os.curdir)
filelist = []
for f in files:
    filelist.append(f)
  1. Takes user input for category type
print("PickItUp 1.0\nCommands:\n ext: Folder by extension\n date: Folder by modification date\n size: Folder by file size\n quit: Quit PickItUp")
action = input("> ")
  • By file extension
for file in filelist:
    filename ,file_extension = os.path.splitext(file)
    for category in types:
        if file_extension in types[category]:
            dst_path = "./" + category + "/" + file
            src_path = "./" + file
            try:
                shutil.move(src_path, dst_path)
            except:
                pass
  • By file size (<1MB for example)
for file in filelist:
    file_source = "./" + file
    file_size = os.stat(file_source)
    if file_size.st_size < 1000000:
        if os.path.exists("./Less Than 1 MB") == False:
            os.makedirs("./Less Than 1 MB")
        try:
            shutil.move(file_source, "./Less Than 1 MB/"+file)
        except:
            pass
  • By modification date
for file in filelist:
    file_source = "./" + file
    file_mod_date = time.localtime(os.path.getmtime(file_source))
    folder_name = calendar.month_abbr[file_mod_date.tm_mon] + " " + str(file_mod_date.tm_year)
    folder_path = "./" + folder_name
    if os.path.exists(folder_path) == False:
        os.makedirs(folder_path)
    try:
        shutil.move(file_source, folder_path)
    except:
        pass

Special Thanks To

Dyne.org - file-extension-list

Project details


Release history Release notifications | RSS feed

This version

1.0

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pickitup-1.0.tar.gz (4.5 kB view hashes)

Uploaded Source

Built Distribution

pickitup-1.0-py3-none-any.whl (5.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page