Skip to main content

A file sorting automation

Project description

auto-file-sorter

pre-commit.ci status pylint status tests status CodeQL PyPI - Version Python versions semantic-release PyPI - Format License: MIT Ruff Style: black Imports: isort

auto-file-sorter is a Python automation tool that tracks a directory and sorts files into their respective folders based on their file extensions.

Installation

Make sure you have Python 3.9 or later installed. You can install the package using pip:

pip install auto-file-sorter

Alternatively, you can install the package from GitHub to get the latest changes:

pip install git+https://github.com/realshouzy/auto-file-sorter.git

The project uses the following packages and libraries:

# standard library
import argparse
import concurrent.futures
import datetime
import json
import logging
import os.path
import pathlib
import platform
import re
import shutil
import sys
import time
import typing

# third party
import typing_extensions
# import watchdog
import watchdog.events
import watchdog.observers

# only for type annotations; not used at runtime
import collections.abc
import watchdog.observers.api

# for testing
import pytest

Documentation

Consult auto-file-sorter --help / auto-file-sorter -h for the full set of options. This also applies to all subcommands:

  • auto-file-sorter track
  • auto-file-sorter read
  • auto-file-sorter write
  • auto-file-sorter locations

Arguments and flags of auto-file-sorter

Argument and flags Use
--version / -V Outputs the installed version of auto-file-sorter.
--debug / -d Sets the logging level to 10 (debugging), enabling more informative debugging logs.
--verbose / -v Enables verbose outputs. It can be used up to three levels, with each level printing more logs to the stream. The first level prints all logs up to the logging level WARNING, the second level prints all logs up to INFO, and the third level prints all logs up to DEBUG (this requires the debugging flag).
--log-location Specifies the path to a log file. By default, the log file will be located with the source code.
--configs-location Specifies the path to the configs json file. By default, the configs file will be located with the source code.

Arguments and flags of auto-file-sorter track

Argument and flags Use
Positional arguments Paths to the directories to be tracked. At least one directory path must be provided. The tool will track all the given directories simultaneously using threading.
--undefined-extensions / -u Path in which files whose extensions are not defined in the configs will be moved. If no path was specified, said files will be skipped.
--autostart (only supported on Windows) Runs the command on startup. Refer to Windows setup for more information.

Arguments of auto-file-sorter read

Argument Use
Positional arguments Extensions for which their respective paths should be read from the configs.json file. If no extensions are given, it will print out the entire configs.json file.

Arguments of auto-file-sorter write

Argument Use
--add / -a Adds an extension and its corresponding path to the configs.json file. It takes two arguments: the extension and the path to which files with this extension will be saved. If the extension already exists, the path will be overridden.
--remove / -r Removes one or more extensions and their respective paths from the configuration.
--json / -j Loads a json files that binds extensions to paths and merges it into the configs.json file.

The json files should be structured similarly to the configs.json file. An example (with Windows paths) can be found in example_configs.json. Ultimately you can directly modify the configs.json file yourself.

Flags of auto-file-sorter locations

Argument Use
--log / -l Prints the location of the log file
--config / -c Prints the location of the config file

Run on startup

Windows setup

To run the tool on startup, add the --autostart flag after the track subcommand. This will add the command to the Startup folder as a .vbs file, ensuring it runs in the background.

To avoid the overhead of creating a StreamHandler and prevent overwriting the .vbs file on every startup, it removes all occurrences of --verbose / -v as well as --autostart.

An example of this transformation:

- auto-file-sorter -d -vvv track C:\path\to\be\tracked
+ C:\path\to\auto-file-sorter.exe -d track C:\path\to\be\tracked

This will then be run by the .vbs file on startup:

Set objShell = WScript.CreateObject("WScript.Shell")
objShell.Run "C:\path\to\auto-file-sorter.exe -d track C:\path\to\be\tracked", 0, True

macOS setup

Add the desired command to the Automator app. You can find a tutorial here.

Linux setup

Due to the wide variety of Linux distributions and their differences, it is up to the user to configure auto-file-sorter to run on startup.

Usage

Simply place files into the tracked folder, and the tool will automatically sort them for you.

Excpetion handling

Most exceptions will be logged in a log file. If an exception should occur, the program will handle it gracefuly by exiting with exit code 1, except in cases where an exception is encountered while moving a file. This behavior is specifically implemented to address threading concerns and ensure proper garbage collection. In such cases, the respective thread will exit, while the main program continues its execution. Ultimately, the user has the option to stop the program manually. This approach allows for proper cleanup and termination of resources.

Contributing

If you are interested in contributing to this project, please refer here for more information.

License

auto-file-sorter is available under the MIT license

Credit

This project was originally inspired by Kalle Hallden's desktop_cleaner project.

Project details


Download files

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

Source Distribution

auto-file-sorter-1.0.2.tar.gz (17.0 kB view hashes)

Uploaded Source

Built Distribution

auto_file_sorter-1.0.2-py3-none-any.whl (16.4 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