本文简要介绍ruby语言中 FileUtils.ln
的用法。
用法
ln(target, link, force: nil, noop: nil, verbose: nil)
ln(target, dir, force: nil, noop: nil, verbose: nil)
ln(targets, dir, force: nil, noop: nil, verbose: nil)
也别名为:link
在第一种形式中,创建一个指向 target
的硬链接 link
。如果link
已经存在,则引发 Errno::EEXIST。但是如果设置了 force
选项,则会覆盖 link
。
FileUtils.ln 'gcc', 'cc', verbose: true
FileUtils.ln '/usr/bin/emacs21', '/usr/bin/emacs'
在第二种形式中,创建一个指向 target
的链接 dir/target
。在第三种形式中,在目录 dir
中创建几个硬链接,指向 targets
中的每个项目。如果 dir
不是目录,则引发 Errno::ENOTDIR。
FileUtils.cd '/sbin'
FileUtils.ln %w(cp mv mkdir), '/bin' # Now /sbin/cp and /bin/cp are linked.
相关用法
- Ruby FileUtils.ln_s用法及代码示例
- Ruby FileUtils.ln_sf用法及代码示例
- Ruby FileUtils.mkdir用法及代码示例
- Ruby FileUtils.compare_file用法及代码示例
- Ruby FileUtils.options_of用法及代码示例
- Ruby FileUtils.install用法及代码示例
- Ruby FileUtils.chown_R用法及代码示例
- Ruby FileUtils.cp_lr用法及代码示例
- Ruby FileUtils.rmdir用法及代码示例
- Ruby FileUtils.rm_rf用法及代码示例
- 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.rm_f用法及代码示例
- Ruby FileUtils.rm_r用法及代码示例
- Ruby FileUtils.chmod用法及代码示例
- Ruby FileUtils.cp_r用法及代码示例
- Ruby FileUtils.options用法及代码示例
- Ruby FileUtils.chown用法及代码示例
- Ruby FileUtils.touch用法及代码示例
注:本文由纯净天空筛选整理自ruby-lang.org大神的英文原创作品 FileUtils.ln。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。