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

About this user

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

Move acts_as_attachment / attachment_fu images

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
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS