xcopy 排除文件中的注释或备注
我知道 xcopy 是如何工作的,但是是否可以向排除文件添加注释?像这样的事情:
.pdb
.xml
.config
Some.dll /* excluded because ... */
I know how xcopy works, but is it possible to add comments to your exclude files? Something like this:
.pdb
.xml
.config
Some.dll /* excluded because ... */
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我们就是这样做的:
对于某些人来说也许这是理所当然的事,但我认为在排除的文件中可能有一种默认的注释方式。也许 xcopy 甚至会搜索文件名为 '/* 的文件,因为 ... */ 被排除,但它对我们有用。
This is how we did it:
Maybe a no-brainer for some, but I thought there might have been a default way of commenting in excluded files. Maybe xcopy even searches for a file with filename '/* excluded because ... */, but it works for us.