Method: FileUtils.rmtree
- Defined in:
- lib/fileutils.rb
.rmtree ⇒ Object
Options: noop verbose secure
Equivalent to
#rm_r(list, :force => true)
WARNING: This method causes local vulnerability. Read the documentation of #rm_r first.
658 659 660 661 662 663 |
# File 'lib/fileutils.rb', line 658 def rm_rf(list, = {}) , OPT_TABLE['rm_rf'] = .dup [:force] = true rm_r list, end |