批量文件删除
如何使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
for
命令与if
命令和变量扩展相结合,可用于删除除指定扩展名之外的所有文件。例如,这将删除当前目录中没有 .TXT 扩展名的所有文件(不区分大小写):The
for
command combined with anif
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):