码迷,mamicode.com
首页 > 其他好文 > 详细

ruby 向文件夹及其子文件夹添加文件

时间:2019-08-18 17:16:06      阅读:89      评论:0      收藏:0      [点我收藏+]

标签:添加   jpg   utf-8   mes   ruby   class   The   themes   style   

# coding utf-8
require find
require fileutils

SourceFile1 = "点开有礼.jpg"
TargetDir = "/media/zn/工作1/开发/网站主题数据/themes"

Find.find(TargetDir) do |dir|
  if File.directory?(dir)
    FileUtils.cp(SourceFile1, dir)
  end
end

 

ruby 向文件夹及其子文件夹添加文件

标签:添加   jpg   utf-8   mes   ruby   class   The   themes   style   

原文地址:https://www.cnblogs.com/znsongshu/p/11373015.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!