I'd like to delete a directory that may or may not contain files or other directories. Looking in the Ruby docs I found Dir.rmdir but it won't delete non-empty dir. Is there a convenience method that let's me do this? Or do I need to write a recursive method to examine everything below the directory?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
A pure Ruby way: require 'fileutils' FileUtils.rm_rf("/directory/to/go") If you need thread safety: (warning, changes working directory) FileUtils.rm_rf("directory/to/go", :secure=>true) |
|||
|
|
|
On non-Windows systems, the following will work:
|
|||||
|