I have a public/cache folder which has files *and folders*.

How can I completely empty that folder using a rake task?

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

Ruby has the *nix's rm -rf in the the FileUtils module that you can use to delete both files and non-empty folders

FileUtils.rm_rf('dir/to/remove')   
link|improve this answer
That would remove the folder itself as well -- is there anyway to have it only remove the contents of that folder, but keep the empty folder? – Jacob Dec 16 '11 at 18:28
Found it.. FileUtils.mkdir. Thanks – Jacob Dec 16 '11 at 18:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.