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

ruby复制文件夹到新的重命名的文件夹

时间:2019-08-18 21:53:30      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:tar   class   end   title   require   site   dia   join   nbsp   

require yaml
require find
require fileutils

SOURCE_DIR = "/media/zn/工作1/开发/网站主题数据/themes/"
TARGET_DIR = "/media/zn/商品1/themes/"

site_themes = YAML.load_file("site_themes.yml")
site_themes.each do |theme|
   title = theme[0] 
   tag = theme[1]
   source_name = theme[3].gsub(/\/.*\//, ‘‘).sub(/\.zip/,‘‘)
   new_name = "网站模板-" + title + tag.join(",")

   begin
     FileUtils.cp_r(SOURCE_DIR + source_name, TARGET_DIR + new_name)
   rescue
     puts source_name + "....error"
     next
   end
end 

 

ruby复制文件夹到新的重命名的文件夹

标签:tar   class   end   title   require   site   dia   join   nbsp   

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

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