Roto
Roto the ruby photo finder
Roto is an easy way to find and move all of the photos on your computer, while segregading duplicates and organizing them into a clean readable folder structure that allows you to take control your photos
Installation
gem 'roto'
or
gem install roto
Examples
- Find Files and copy them
roto = Roto.new
path = "some/path/with/photos
roto.find_files(path)
new_path = "some/new/path/for/photos"
roto.copy_photos(new_path)
Or move photos permanently (use caution)
roto.move_photos(new_path)
It will rename duplicates by default, but to change this behavior do
roto = Roto.new
roto.rename_duplicates = false
Roto also ships as an executable. Simply do
roto copy path/to/source/directory path/to/destination/directory