How can I delete a file?

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.
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 S. [email protected]

John Y. wrote:

Check out the File class.
class File - RDoc Documentation

File.delete(“#{RAILS_ROOT}/public/system/photos/original/1/photo.jpg”)

That should do it.

-John

On Jan 11, 12:48�pm, John S. [email protected]

Thanks a lot! I will try iy.