I want to delete a file that is in public/system/photos/original/1/photo.jpg. How can I delete it?
Check out the File class.
File.delete("#{RAILS_ROOT}/public/system/photos/original/1/photo.jpg")
That should do it.
-John
John Yerhot wrote:
Check out the File class. http://www.ruby-doc.org/core/classes/File.html#M002559
File.delete("#{RAILS_ROOT}/public/system/photos/original/1/photo.jpg")
That should do it.
-John
On Jan 11, 12:48�pm, John Smith <rails-mailing-l...@andreas-s.net>
Thanks a lot! I will try iy.