本文简要介绍ruby语言中 FileUtils.cp_lr
的用法。
用法
cp_lr(src, dest, noop: nil, verbose: nil, dereference_root: true, remove_destination: false)
硬链接 src
到 dest
。如果src
是目录,则此方法递归链接其所有内容。如果 dest
是目录,则将 src
链接到 dest/src
。
src
可以是文件列表。
如果dereference_root
为真,则此方法取消引用树根。
如果remove_destination
为真,此方法会在复制前删除每个目标文件。
FileUtils.rm_r site_ruby + '/mylib', force: true
FileUtils.cp_lr 'lib/', site_ruby + '/mylib'
# Examples of linking several files to target directory.
FileUtils.cp_lr %w(mail.rb field.rb debug/), site_ruby + '/tmail'
FileUtils.cp_lr Dir.glob('*.rb'), '/home/aamine/lib/ruby', noop: true, verbose: true
# If you want to link all contents of a directory instead of the
# directory itself, c.f. src/x -> dest/x, src/y -> dest/y,
# use the following code.
FileUtils.cp_lr 'src/.', 'dest' # cp_lr('src', 'dest') makes dest/src, but this doesn't.
相关用法
- Ruby FileUtils.cp_r用法及代码示例
- Ruby FileUtils.cp用法及代码示例
- Ruby FileUtils.compare_file用法及代码示例
- Ruby FileUtils.chown_R用法及代码示例
- Ruby FileUtils.collect_method用法及代码示例
- Ruby FileUtils.commands用法及代码示例
- Ruby FileUtils.cd用法及代码示例
- Ruby FileUtils.chmod_R用法及代码示例
- Ruby FileUtils.chmod用法及代码示例
- Ruby FileUtils.chown用法及代码示例
- Ruby FileUtils.mkdir用法及代码示例
- Ruby FileUtils.options_of用法及代码示例
- Ruby FileUtils.ln_s用法及代码示例
- Ruby FileUtils.install用法及代码示例
- Ruby FileUtils.rmdir用法及代码示例
- Ruby FileUtils.rm_rf用法及代码示例
- Ruby FileUtils.mv用法及代码示例
- Ruby FileUtils.have_option?用法及代码示例
- Ruby FileUtils.mkdir_p用法及代码示例
- Ruby FileUtils.rm_f用法及代码示例
- Ruby FileUtils.rm_r用法及代码示例
- Ruby FileUtils.ln用法及代码示例
- Ruby FileUtils.options用法及代码示例
- Ruby FileUtils.ln_sf用法及代码示例
- Ruby FileUtils.touch用法及代码示例
注:本文由纯净天空筛选整理自ruby-lang.org大神的英文原创作品 FileUtils.cp_lr。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。