Created
December 16, 2013 09:59
-
-
Save staybuzz/7984704 to your computer and use it in GitHub Desktop.
EpgTimerで録画後bat設定をすることで自動的にファイルを移動してくれる。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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