= private = protected
rmtree()
Recursively deletes a directory, including all directories beneath it.
See FileUtils.rm_r
# File ext/pathname/lib/pathname.rb, line 585 def rmtree # The name "rmtree" is borrowed from File::Path of Perl. # File::Path provides "mkpath" and "rmtree". require 'fileutils' FileUtils.rm_r(@path) nil end