photo_sort 0.3.0

A tool to rename and sort photos/videos by its EXIF date/metadata. It tries to extract the date from the EXIF data or file name and renames the image file according to a given format string. Foreach source directory all images are processed and renamed to the target directory
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[cfg(feature = "binary")]
mod main_impl;

#[cfg(feature = "binary")]
mod indicatif_log_bridge;

fn main() {
    #[cfg(not(feature = "binary"))]
    eprintln!("This package is not built with the binary feature enabled. Please enable the binary feature to use the command line interface.");

    #[cfg(feature = "binary")]
    main_impl::main();
}