如何防止 dir 匹配短文件名?
我有一个批处理文件,其中包含一个 dir 命令,该命令尝试匹配以 1 结尾的文件。
dir *1.*
这不起作用,因为 dir 匹配文件名的短版本和长版本。因此,虽然 MyFileName.ext 与 *1.* 不匹配,但 MYFILE~1.EXT 匹配,因此 MyFileName.ext 包含在结果中。如何防止 dir 与短文件 (8.3) 文件名匹配?
I have a batch file that includes a dir command that is trying to match files that end with a 1.
dir *1.*
This does not work because dir matches both the short and long versions of file names. So while MyFileName.ext does not match *1.*, MYFILE~1.EXT does and so MyFileName.ext is included in the results. How can I prevent dir from matching against short file (8.3) file names?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你不能——你必须用其他方式来匹配它们。尝试 dir /b |查找str“.*1\..*”。
You can't - you'll have to match them some other way. Try
dir /b | findstr ".*1\..*"
.