下面是一个很好的例子,说明在文件存在或不存在的情况下如何执行命令:
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文件,这样做: