| Crates.io | image-organiser |
| lib.rs | image-organiser |
| version | 0.3.4 |
| created_at | 2023-03-20 10:23:18.244039+00 |
| updated_at | 2024-01-23 14:56:22.434966+00 |
| description | A tool to organise images into folders by date |
| homepage | https://github.com/henrik-dmg/image-organiser |
| repository | https://github.com/henrik-dmg/image-organiser |
| max_upload_size | |
| id | 815125 |
| size | 25,772 |
This is a simple tool I'm writing mainly for my own purposes. It organises files from my camera's SD card into folders based on the date the photo was taken. It also renames the files to a more sensible format. Basically a Rust version of my Swift tool file-organiser. If you're on macOS, I recommend using that instead because I have little to no idea what I'm doing with Rust :D
Using cargo is the simplest way to install, simply run cargo install image-organiser
git clone https://github.com/henrik-dmg/image-organiser.gitcd image-organisercargo build# To copy the matched files to the TARGET_DIRECTORY
image-organiser copy <PATTERN> <TARGET_DIRECTORY> [SOURCE_DIRECTORY] [STRATEGY]
# To move the matched files to the TARGET_DIRECTORY
image-organiser move <PATTERN> <TARGET_DIRECTORY> [SOURCE_DIRECTORY] [STRATEGY]
The parameters are the same for both the copy and move commands.
PATTERN parameter is a glob pattern that matches the files you want to organise.TARGET_DIRECTORY is the directory you want the files to be copied/moved to.SOURCE_DIRECTORY is the directory you want to search for files in. If it's not specified, the current directory is used.STRATEGY is the strategy to use when copying/moving files. If it's not specified, the default month is used.Example: image-organiser copy "**/*.jpg" /Volumes/MySDCard ~/Pictures week
About 80% done. I've got the basic functionality working, but there are a few things I want to add before I'm happy with it.