使用批处理文件删除一些文件

发布于 2024-12-03 20:19:29 字数 44 浏览 0 评论 0原文

我必须创建批处理文件来删除第一个符号为“a”的目录中的文件。我该怎么做呢?

I must create batch file to delete files of a directory which names first symbols are "a". How can I do it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

囍笑 2024-12-10 20:19:29

如果您使用的是 Windows,请尝试此操作(假设 *full_path* 是您要删除的目录):

@echo off
DEL /Q full_path\a*.*

或者如果您想从该目录及其子目录中删除文件,请尝试此操作:

@echo ff
DEL /Q /S full_path\a*.*

如果您使用的是 Linux(或类似版本),请尝试以下操作:

rm -f full_path/a*

rm -rf full_path/a*

If you're using Windows try this (assuming *full_path* is directory you want to delete in):

@echo off
DEL /Q full_path\a*.*

or if you want to delete files from that dir and in its subdir, try this:

@echo ff
DEL /Q /S full_path\a*.*

If you're using Linux (or similar), try this:

rm -f full_path/a*

or

rm -rf full_path/a*
记忆消瘦 2024-12-10 20:19:29

如果您使用的是 Linux 或 OSX 或 Cygwin 之类的东西,请尝试

find . -name "a*" -delete

如果您想删除整个目录

find . -name  "a*" | xargs -n 5 rm -r

If you are using something like Linux or OSX or Cygwin try

find . -name "a*" -delete

If you want to remove whole directories

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