/image-manager

Simple console app for managing images.

Primary LanguageF#MIT LicenseMIT

Image Manager

Simple console app for managing images.

Release

Compiled files will be in /dist/ directory.

fake build target Release

Commands

List

Will show a list of available commands.

dotnet run list
Available commands:
    help     Displays help for a command
    list     Lists commands
    prepare  Prepares images for sorting

Prepare for sorting

Prepares images from source dir (recursively) into the target dir, it may exclude images from a specific dir (recursively).

Target directory is automatically added to excluded directories - it means, files which are already in the target directory, will never be overwritten (unless --force option is set).

Examples

# without excluding
dotnet run prepare /source/dir/ /target/dir/

# with excluding
dotnet run prepare /source/dir/ /target/dir/ /excluded/dir/