Skip to content

Instantly share code, notes, and snippets.

@dankimio
Created December 1, 2021 13:33
Show Gist options
  • Select an option

  • Save dankimio/c41c3d963f9625db1b70919d761520be to your computer and use it in GitHub Desktop.

Select an option

Save dankimio/c41c3d963f9625db1b70919d761520be to your computer and use it in GitHub Desktop.
Find orphan photos
PATH = '/Volumes/LaCie/Photos/Lightroom Catalog 2021/'
Dir.chdir(PATH)
rafs = Dir['*.raf']
rafs.each do |raf|
filename = raf.split('.').first
next if Dir["#{filename}.jpg"].any?
puts raf
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment