Flowdock
rm_rf(list, noop: nil, verbose: nil, secure: nil) private

Equivalent to

FileUtils.rm_r(list, :force => true)

WARNING: This method causes local vulnerability. Read the documentation of #rm_r first.

Show source
Register or log in to add new notes.
February 12, 2010
0 thanks

Example

Delete all files in log

require 'FileUtils'
FileUtils.rm_rf(Dir.glob("log/*"))
March 16, 2010 - (v1_8_6_287 - v1_8_7_72)
0 thanks

Another Example

Delete all files in log

require 'FileUtils'
Dir["log/*"].each{|file| FileUtils.rm file}