windows dos命令如何删除指定目录
在linux系统中,我们使用以下命令删除当前目录下的“.svn”目录及其子目录。
find . -name .svn -print0 | xargs -0 rm -rf
那么,我们可以使用哪个命令来完成相同的功能呢? 谢谢。
In linux system, we use the follow command to delete the ".svn" directory in current directory and int its sub directorys.
find . -name .svn -print0 | xargs -0 rm -rf
Then, which command could we use to do the same function?
thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以尝试创建一个新的批处理文件并在其中写入以下代码:
它将递归删除 .svn 目录。
you can try making a new batch file and writing the following code in it :
it will delete the .svn directory recursively.
您可以在命令提示符下使用 rmdir 命令删除子目录的 dir put /s
喜欢:
rmdir c:\.svn /s
只需以管理员身份启动命令提示符,然后执行此命令。
供您参考:
语法:
rmdir [驱动器:]路径[/s] [/q]
rd [驱动器:]路径[/s] [/q]
参数
[Drive:]Path :指定要删除的目录的位置和名称。
/s :删除指定的目录和所有子目录,包括任何文件。使用 /s 删除一棵树。
/q :以安静模式运行 rmdir。删除目录而不确认。
/? :在命令提示符处显示帮助。
请参阅此页面了解更多详细信息: http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/rmdir.mspx?mfr=true
You can use rmdir command at command prompt to delete the dir put /s for subdirectories
Like:
rmdir c:\.svn /s
just start command prompt as administrator then execute this command.
For your reference:
Syntax:
rmdir [Drive:]Path [/s] [/q]
rd [Drive:]Path [/s] [/q]
Parameters
[Drive:]Path : Specifies the location and name of the directory that you want to delete.
/s : Removes the specified directory and all subdirectories including any files. Use /s to remove a tree.
/q : Runs rmdir in quiet mode. Deletes directories without confirmation.
/? : Displays help at the command prompt.
Refer this page for more detail: http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/rmdir.mspx?mfr=true