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.
如何使用命令提示符从特定位置查找文件夹。
例如:- 我想从桌面搜索文件,大约有 10 个文件包含从 A 开始的名称,我想要所有此类文件的位置以及文件名。
我知道可以使用 find commnad 来完成,但我无法为其编写正确的代码。
谢谢您的帮助
you can find all files from a directory and sub directories that start with 'a' using this:
dir /b /s a*.*