Skip to content

Instantly share code, notes, and snippets.

@ZackMattor
Created December 19, 2016 22:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ZackMattor/21df01c424fb22a0a52b4be38f44b277 to your computer and use it in GitHub Desktop.
Save ZackMattor/21df01c424fb22a0a52b4be38f44b277 to your computer and use it in GitHub Desktop.
Flatten folder structure
require 'fileutils'
count = 0
Dir::glob('images/**/*.jpg').each do |image|
FileUtils::copy(image, "yay/#{count}.jpg")
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment