Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用 dir 命令查找包含某些部分的文件?例如,如果我想要名称中包含“随机”的目录中的所有文件,我将如何只选择这些文件?
我知道您可以使用通配符来查找某些字符串,但是否可以使用变量来执行此操作?如果 name = random,那么我将如何仅使用 name 来查找名称中带有“random”的文件?
谢谢
其实这很简单:
dir *random*
random 周围的引号是可选的。
dir(['*' name '*'])
另外,请确保
name='random'
不是
name=random