次に、ファイルが存在する場合と存在しない場合のコマンドの実行方法の良い例を示します。
if exist C:\myprogram\sync\data.handler echo Now Exiting && Exit
if not exist C:\myprogram\html\data.sql Exit
これら3つのファイルを取得して、一時的な場所に配置します。フォルダーを削除すると、これらの3つのファイルが復元されます。
xcopy "test" "C:\temp"
xcopy "test2" "C:\temp"
del C:\myprogram\sync\
xcopy "C:\temp" "test"
xcopy "C:\temp" "test2"
del "c:\temp"
XCOPYコマンドを使用します。
xcopy "C:\myprogram\html\data.sql" /c /d /h /e /i /y "C:\myprogram\sync\"
その/c /d /h /e /i /y
意味を説明します。
/C Continues copying even if errors occur.
/D:m-d-y Copies files changed on or after the specified date.
If no date is given, copies only those files whose
source time is newer than the destination time.
/H Copies hidden and system files also.
/E Copies directories and subdirectories, including empty ones.
Same as /S /E. May be used to modify /T.
/T Creates directory structure, but does not copy files. Does not
include empty directories or subdirectories. /T /E includes
/I If destination does not exist and copying more than one file,
assumes that destination must be a directory.
/Y Suppresses prompting to confirm you want to overwrite an
existing destination file.
`To see all the commands type`xcopy /? in cmd
オプションsync.bat myprogram.iniで他のバッチファイルを呼び出します。
どういう意味かわかりませんが、両方のファイルを開きたい場合は、次のようにファイルのパスを入力します。
Path/sync.bat
Path/myprogram.ini
Bash環境の場合は簡単でしたが、ファイルまたはフォルダーが存在するかどうか、およびファイルまたはフォルダーかどうかをテストする方法がわかりません。
バッチファイルを使用しています。先ほど、これを使用するには.batファイルを作成する必要があると述べました。
これを行う.BATファイルを作成する必要があります。