如何防止 dir 匹配短文件名?

发布于 2024-11-04 01:42:16 字数 220 浏览 0 评论 0原文

我有一个批处理文件,其中包含一个 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 技术交流群。

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

发布评论

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

评论(1

余罪 2024-11-11 01:42:16

你不能——你必须用其他方式来匹配它们。尝试 dir /b |查找str“.*1\..*”。

You can't - you'll have to match them some other way. Try dir /b | findstr ".*1\..*".

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