构建项目时复制资源

发布于 2025-01-06 12:38:29 字数 320 浏览 1 评论 0原文

如何在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

被你宠の有点坏 2025-01-13 12:38:29

试试这个:

xcopy /ey "$(ProjectDir)CellEditing" "$(TargetDir)CellEditing\"
  • /e 参数用于指示递归复制(包括空目录)
  • 使用 /y 参数,因此如果您再次运行它,它会覆盖文件
  • 不要忘记目标末尾的尾随 \ ,否则 xcopy 不知道您是指定输出目录还是输出文件名。

另请参阅编写批处理文件将文件从一个文件夹复制到另一个文件夹

Try this:

xcopy /ey "$(ProjectDir)CellEditing" "$(TargetDir)CellEditing\"
  • The /e parameter is used to indicate recursive copy (including empty directories)
  • The /y parameter is used so it overwrites files if you run it again
  • Don't forget the trailing \ 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文