あーるPG - 社会人のデジタル生活

日曜プログラマになろうかなーと思った30代理系社会人の、キャリアアップや趣味(特にデジタル情報)の記録。らーめんとビールが好き。

2007-07-25から1日間の記事一覧

ファイルコピー(上書きしない)

sce_path = /home/hoge tgt_path = /home/fuga Dir::glob(src_path + "/*").each {|f| # fにはフルパスが入る if (FileTest.file?(f) == false) then next end if (FileTest.exist?(tgt_path + "/" + File::basename(f)) == true) then next end FileUtils.c…