Photo Organizer

Need an organizer for your photos on the computer? Run this!

CLI usage

To quickly organize photos in the test-photos folder, run the follow command to output them into the default photos directory.

bash photo_organizer --target test-photos

To add a destination folder for all the organized photos, add the --dest <DEST_FOLDER> flag to the end.

While developing with cargo, forward the flags.

bash cargo run -- --target test-photos

Lib usage

```rust //Take an image path and return the exif date of the image pub fn readexifdatedata(imagepath_str: &str) -> String

//organize photos in a folder. //will require environment variable DEST_FOLDER pub fn makephotolibrary(photosdirstr: &str) ```

Features

Future development