Project

roto

0.0
No commit activity in last 3 years
No release in over 3 years
A gem to find and move photos on your computer
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme

Gem Version CircleCI

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