批量文件删除

发布于 2024-09-11 14:25:15 字数 87 浏览 3 评论 0原文

如何使用 If not 命令制作批处理文件,例如:IF NOT [扩展名类型] 然后删除文件夹中的所有内容

How am I able to make a batch file with an If not command, such as: IF NOT [extension type] Then delete all in a folder?

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

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

发布评论

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

评论(1

北陌 2024-09-18 14:25:15

for 命令与 if 命令和变量扩展相结合,可用于删除除指定扩展名之外的所有文件。例如,这将删除当前目录中没有 .TXT 扩展名的所有文件(不区分大小写):

for %%i in (*) do (
    if /i "%%~xi" neq ".TXT" del %%i
)

The for command combined with an if command and variable expansion can be used to delete all files except those with the specified extension. For example, this will delete all files in the current directory that do not have a .TXT extension (case insensitive):

for %%i in (*) do (
    if /i "%%~xi" neq ".TXT" del %%i
)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文