我为我的visual studio项目编写了一个构建后脚本
copy "$(TargetDir)ReportTemplates\*.*" "$(TargetDir)Excel\"
del /q "$(TargetDir)ReportTemplates"
并在构建输出中得到
V:\project\ReportTemplates\CRC150.xls
V:\project\ReportTemplates\SR558.xls
V:\project\ReportTemplates\SR559.xls
3 file(s) copied.
Deleted file - V:\project\ReportTemplates\CRC150.xls
Deleted file - V:\project\ReportTemplates\SR558.xls
Deleted file - V:\project\ReportTemplates\SR559.xls
但是当我查看文件复制的目录时,它们仍然在原始位置。
之前有人见过这个吗?
答案 0 :(得分:2)
也许这些文件是readonly,尝试在post build脚本中添加/ f - force。同时检查您是否未打开此文件r application or excel reader because this could be reason why you can
删除它们。