Skip to content

Instantly share code, notes, and snippets.

@staybuzz
Created December 16, 2013 09:59
Show Gist options
  • Save staybuzz/7984704 to your computer and use it in GitHub Desktop.
Save staybuzz/7984704 to your computer and use it in GitHub Desktop.
EpgTimerで録画後bat設定をすることで自動的にファイルを移動してくれる。
REM 今日の日付をnowdateに代入
REM 2013-12-16
set nowdate=%date:~0,4%-%date:~5,2%-%date:~8,2%
REM $FilePath$には録画ファイルの絶対パスが自動的に展開される。
move "$FilePath$" "Z:\%nowdate%\01_NHK総合"
del "$FilePath$.err"
del "$FilePath$.program.txt"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment