72 我有一些Ruby代码: files.each do |file| FileUtils.mkdir_p(File.dirname(target)) FileUtils.cp_r(file, target, :verbose => true) end 我想加一张支票 if file is a folder # do this if file is a file # do that 如何在Ruby中实现? ruby file — 集成电路 source 1 @Jay Erm,这是Ruby,而不是Python。 — 安德鲁·马歇尔 1 哦,哎呀,我总是把这这两了 — 周杰伦
138 您可以使用File.directory?("name")和/或File.file?("name")。 — 懒惰的开发者 source 1 非常感激!我知道必须有一种方法。Dir.glob的工作效果还不错:) — 凯尔·卡尔森