Ось хороший приклад того, як зробити команду, якщо файл є чи не існує:
if exist C:\myprogram\sync\data.handler echo Now Exiting && Exit
if not exist C:\myprogram\html\data.sql Exit
Ми візьмемо ці три файли і покладемо їх у тимчасове місце. Після видалення папки вона відновить ці три файли.
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 файл, який робить це: