Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

Move acts_as_attachment / attachment_fu images (See related posts)

Use this to move files from the old directory structure (before 0000 format) to new one

Dir.new(File.dirname($PROGRAM_NAME)).each do |f|
  next if f == '0000' || f == 'move.rb' || f == '..' || f == '.'
  
  new_name = sprintf("%04d", f.to_i)
  
  puts "Moving #{f} to #{new_name}"
  puts `mv #{f} 0000/#{name}`
end

You need to create an account or log in to post comments to this site.


Click here to browse all 4858 code snippets

Related Posts