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.
例如,有没有办法将所有不包含名为“test”的文件的文件夹(完整路径)保存在文本文件中。
这应该工作
@echo off for /d /r %%f in (*) do ( if not exist %%f\test.txt ( echo %%f >>C:\folders.txt ) )
这会将所有不包含该文件的文件夹输出test.txt到该文件C:\folders.txt,只需根据您的需要进行调整/调整。
test.txt
C:\folders.txt