构建项目时复制资源
如何在 Build
之后将 Resources
子目录复制到 TargetDir
?
我尝试过:
copy “$(ProjectDir)\Resources” “$(TargetDir)”
但是这个复制文件,而不是目录
EDIT
xcopy /s “$(ProjectDir)\Resources” “$(TargetDir)”
给出了相同的结果
How can I copy Resources
subdirectory to TargetDir
after Build
?
I tried:
copy “$(ProjectDir)\Resources” “$(TargetDir)”
but this copy files, not directory
EDIT
xcopy /s “$(ProjectDir)\Resources” “$(TargetDir)”
gives the same result
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
/e
参数用于指示递归复制(包括空目录)/y
参数,因此如果您再次运行它,它会覆盖文件\
,否则 xcopy 不知道您是指定输出目录还是输出文件名。另请参阅编写批处理文件将文件从一个文件夹复制到另一个文件夹
Try this:
/e
parameter is used to indicate recursive copy (including empty directories)/y
parameter is used so it overwrites files if you run it again\
at the end of the destination otherwise xcopy doesn't know whether you are specifying an output directory or an output file name.See also write a batch file to copy files from one folder to another folder