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

   1  
   2  Dir.new(File.dirname($PROGRAM_NAME)).each do |f|
   3    next if f == '0000' || f == 'move.rb' || f == '..' || f == '.'
   4    
   5    new_name = sprintf("%04d", f.to_i)
   6    
   7    puts "Moving #{f} to #{new_name}"
   8    puts `mv #{f} 0000/#{name}`
   9  end
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS