Map

Build Status Build status

A utility to map files into directories according to rules.

I created this to make it easier to organize similarly-named files into the same directory with human-friendly names. Specifically, this made it easier to organize all the book files from Humble Bundles after downloading them flat into my Downloads directory[1].

Usage

Clone this repository, then build using cargo build --release using the stable toolchain.

Options

Rules

Two rules are currently supported, for copying and moving files: * Copy * Format: c /<Regex>/ <Relative destination> * Spaces before/after the c do not matter * Whitespace before/after the first non-whitespace characters of <Relative destination> are stripped * <Relative destination> may have multiple path components, all intermediate directories will be created * <Regex> is run against the file name (including extension) of each file in source-dir, not its entire path * Files that match the <Regex> are copied into <dest-dir>/<Relative destination>/<Matched file name>, preserving the original file * Move * Format: m /<Regex>/ <Relative destination> * Spaces before/after the m do not matter * Whitespace before/after the first non-whitespace characters of <Relative destination> are stripped * <Relative destination> may have multiple path components, all intermediate directories will be created * <Regex> is run against the file name (including extension) of each file in source-dir, not its entire path * Files that match the <Regex> are moved into <dest-dir>/<Relative destination>/<Matched file name>, deleting the original file

Examples

Dry-run a single rule to test moving files with lime in their name in test-source to test-destination/Lime Files: map -s ./test-source -d ./test-destination -v -n 'm/lime/Lime Files'

Execute rules from a file rules.map on files in test-source with destination test-destination: map -s ./test-source -d ./test-destination -r ./rules.map

Errors

This tool attempts to catch errors before performing any filesystem modifications and for those that it doesn't it stops as soon as any errors are encountered. This tool first parses all the rules, determines what actions to perform (e.g. file moves and copies), then performs those actions. If there's a problem parsing the rules (e.g. invalid regex in a Copy rule) or determining the actions (e.g. the source directory cannot be read) then no filesystem modifications occur and a helpful (hopefully) error message is displayed.

If this tool encounters an error when performing actions (e.g. the destination directory is not writeable), then the tool stops performing actions immediately. It does not attempt to roll-back modifications that have already been made, so as always be careful with destructive filesystem actions like moving files with a Move action.

[1] It looks like that gist has since been improved to allow downloading into nicely-named folders.