Skip to content

Instantly share code, notes, and snippets.

@jrpz
Last active August 29, 2015 14:06
Show Gist options
  • Save jrpz/29012b4e6f22a560d35a to your computer and use it in GitHub Desktop.
Save jrpz/29012b4e6f22a560d35a to your computer and use it in GitHub Desktop.
For when I forget to export pngs without extensions
# Step thru directory
# Find files without extension
# Rename file to include .png extension
dir = Dir.getwd
Dir.foreach(dir) do |f|
ext = File.extname(f)
if ext == '' && File.file?(f)
File.rename(f, "#{f}.png")
end
end
puts "Done."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment