windows dos命令如何删除指定目录

发布于 2024-12-17 11:56:53 字数 154 浏览 0 评论 0原文

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

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

发布评论

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

评论(2

一个人的旅程 2024-12-24 11:56:53

您可以尝试创建一个新的批处理文件并在其中写入以下代码:

for /f "tokens=* delims=" %%i in ('dir /s /b /a:d *svn') do (
  rd /s /q "%%i"
)

它将递归删除 .svn 目录。

you can try making a new batch file and writing the following code in it :

for /f "tokens=* delims=" %%i in ('dir /s /b /a:d *svn') do (
  rd /s /q "%%i"
)

it will delete the .svn directory recursively.

往日 2024-12-24 11:56:53

您可以在命令提示符下使用 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

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