XCOPY 复制文件但不覆盖
XCOPY copy file but not overwrite
我在 post-build 事件中使用 XCOPY 将一些文件复制到 bin 目录。但是,我不想在文件已经是最新的时候覆盖。我该怎么做?
示例:
echo F | xcopy /y "$(ProjectDir)..\Files\MyFile.ini" "$(TargetDir)"
"Use the /d option, xcopy will skip the copy if the target file is up to date"。来自评论的回答。
我在 post-build 事件中使用 XCOPY 将一些文件复制到 bin 目录。但是,我不想在文件已经是最新的时候覆盖。我该怎么做?
示例:
echo F | xcopy /y "$(ProjectDir)..\Files\MyFile.ini" "$(TargetDir)"
"Use the /d option, xcopy will skip the copy if the target file is up to date"。来自评论的回答。