本文简要介绍ruby语言中 FileUtils.rm_r
的用法。
用法
rm_r(list, force: nil, noop: nil, verbose: nil, secure: nil)
删除文件 list
[0] list
[1]... 如果 list
[n] 是一个目录,则递归删除其所有内容。当设置 :force 选项时,此方法会忽略 StandardError
。
FileUtils.rm_r Dir.glob('/tmp/*')
FileUtils.rm_r 'some_dir', force: true
警告:如果父目录或删除目录树之一是全局可写的(包括/tmp,其权限为1777),并且当前进程具有Unix超级用户(root)等强权限,并且系统具有符号链接。对于安全删除,请仔细阅读 remove_entry_secure
的文档,并将 :secure 选项设置为 true。默认为 secure: false
。
注意:如果设置了 :secure 选项,此方法会调用 remove_entry_secure
。另见remove_entry_secure。
相关用法
- Ruby FileUtils.rm_rf用法及代码示例
- Ruby FileUtils.rm_f用法及代码示例
- Ruby FileUtils.rmdir用法及代码示例
- Ruby FileUtils.rm用法及代码示例
- Ruby FileUtils.mkdir用法及代码示例
- Ruby FileUtils.compare_file用法及代码示例
- Ruby FileUtils.options_of用法及代码示例
- Ruby FileUtils.ln_s用法及代码示例
- Ruby FileUtils.install用法及代码示例
- Ruby FileUtils.chown_R用法及代码示例
- Ruby FileUtils.cp_lr用法及代码示例
- Ruby FileUtils.collect_method用法及代码示例
- Ruby FileUtils.commands用法及代码示例
- Ruby FileUtils.mv用法及代码示例
- Ruby FileUtils.have_option?用法及代码示例
- Ruby FileUtils.mkdir_p用法及代码示例
- Ruby FileUtils.cd用法及代码示例
- Ruby FileUtils.cp用法及代码示例
- Ruby FileUtils.chmod_R用法及代码示例
- Ruby FileUtils.chmod用法及代码示例
- Ruby FileUtils.cp_r用法及代码示例
- Ruby FileUtils.ln用法及代码示例
- Ruby FileUtils.options用法及代码示例
- Ruby FileUtils.chown用法及代码示例
- Ruby FileUtils.ln_sf用法及代码示例
注:本文由纯净天空筛选整理自ruby-lang.org大神的英文原创作品 FileUtils.rm_r。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。