Skip to content

Commit

Permalink
コメント追加
Browse files Browse the repository at this point in the history
  • Loading branch information
kiyohito1101 authored and yucao24hours committed Oct 4, 2015
1 parent 81bdc84 commit 4ca6525
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions scripts/change_directory.rb
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
require 'fileutils'
# TODO attendees ディレクトリがすでに存在する場合は以下の処理を飛ばしたい

# reportsディレクトリに移動
Dir.chdir('reports')



# reportsディレクトリ内のディレクトリを全て取得
dirs = Dir.glob('*')
# 各ディレクトリを対象にする(dir)
dirs.each do |dir|
# 既存のフォルダ名を分解する
year = dir[0..3]
Expand All @@ -20,7 +22,8 @@
Dir.chdir(dir)
# フォルダにあるすべてのファイルのファイル名を配列で取得する
files = Dir.glob("*")
#FileUtils.cp(files, dest)

FileUtils.cp(files, dest)
# reportsのフォルダに移動する
Dir.chdir('..')

Expand Down

0 comments on commit 4ca6525

Please sign in to comment.