文件列表和目录之间的复制

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了文件列表和目录之间的复制相关的知识,希望对你有一定的参考价值。

Rake task - Copies files from one directory to another in a batch of 50 files, giving 15 seconds break between each batch.
  1. desc "Lists all files in a directory"
  2. task :list do
  3. Dir.chdir(C_DIR)
  4. fs = Dir.glob('**/*.JPG')
  5. count, similar_files = 0
  6. initial = 50
  7. fs.each do |f|
  8. if File.file? f
  9. puts "#{count += 1} -> Copying #{f} to #{REMOTE_DIR}"
  10. unless File.exist?("#{REMOTE_DIR}#{f.to_s}")
  11. File.copy(old_file, new_file, verbose => true)
  12. else
  13. similar_files += 1
  14. end
  15. if count == initial
  16. initial += 50
  17. sleep(15)
  18. end
  19. end
  20. end
  21. puts "Number of Similar files: #{similar_files}"
  22. end

以上是关于文件列表和目录之间的复制的主要内容,如果未能解决你的问题,请参考以下文章

片段之间的共享数据(父列表视图和子列表视图)

如何在活动和浏览器片段之间传递值? [复制]

如何在Android中的主/细分片段之间进行适当的导航?

两个片段之间的 onItemClickListener

Excel VBA 代码在 Open Office 中不起作用(列表中的代码复制文件)

VsCode 代码片段-提升研发效率