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.
也许是微不足道的问题,但当然希望有人可以在这里帮助我..
窗口命令:
我想在根目录及其子目录中搜索文件,其中文件具有特定名称的父目录。(在本例中:\TO)。此父目录始终具有相同的名称,但可以是另一个目录(如果路径不同)
我试过了,但似乎不起作用: dir \root /b /s *\TO *.java
我还尝试将 dir 的输出通过管道传输到 find.. 但不能让“find”显示包含所需路径的行..
从 cmd 提示符:
for /r \ %a in (to\*.java) do @echo %a