具有子文件夹的ruby copy文件夹到目标位置

前端之家收集整理的这篇文章主要介绍了具有子文件夹的ruby copy文件夹到目标位置前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试将其所有子文件夹的源文件夹从源文件夹复制到目标文件夹.
以下代码似乎没有这样做.我可以通过使用只复制文件而不是子文件
FileUtils.cp_r(Dir["/Volumes/TempData/Collects/Sasi/android/*.*"],"/Volumes/Data/Apps/android")

我失踪了什么?

require 'fileutils'
puts "operating_system"
operating_system = gets.chomp

    if operating_system == "android" then
     FileUtils.cp_r(Dir["/Volumes/TempData/Collects/Sasi/android/**"],"/Volumes/Data/Apps/android")
     puts "done"
    elsif operating_system == "ios" then
     FileUtils.cp_r(Dir["Volumes/Data/Apps/iOS/CX5/**"],"/Volumes/TempData/Collects/For_CS")
     puts "done"
    else 
     puts "do nothing"
    end

解决方法

它看起来像FileUtils.copy_entry方法将为您复制一个目录树.
rubydoc中有一些信息: http://www.ruby-doc.org/stdlib-2.0/libdoc/fileutils/rdoc/FileUtils.html#method-c-copy_entry

有很多选项(例如是否保留文件所有权),但是一些快速测试表明您可以像这样传递源和目标目录:

FileUtils.copy_entry @source,@destination
原文链接:https://www.f2er.com/ruby/273304.html

猜你在找的Ruby相关文章