Rar 命令 - 忽略某些文件夹
我想 rar 一个文件夹,但排除某些文件夹及其下面的所有文件 - .svn 文件夹。
如何使用 rar 控制台命令 (rar.exe) 实现这一点?
I would like to rar a folder but exclude a certain of folders and all the files beneath them - the .svn folder.
How could I make this happen using the rar console command (rar.exe)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
你试过-x.svn*吗
Have you tried -x.svn*
我尝试了以下方法,它对我有用:
I tried the following and it worked for me:
您可以执行 svn 导出,那么您首先就不会拥有 .svn 文件夹。
You could do an svn export, then you wouldn't have the .svn folders in the first place.
您必须包含完全限定的路径及其子结构。
该路径必须是规范的。
You have to include the fully qualified path and it's substructures.
The path has to be canonical.
最终工作版本,涉及三个步骤:
The final working version, three steps involved:
使用批处理文件:
这三行必须位于 .bat 文件中。
Using a batch file:
These three lines has to be in a .bat file.