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.
“where”命令适用于 windows 2003 server 及更高版本。如何执行它在 Windows XP 中提供的相同功能。
有没有类似的命令?
您可以在 XP 上使用
dir /b /s C:\yourfile.txt
显然更改C:\为您要搜索的驱动器。
C:\
如果您想搜索超过 1 个驱动器,则可以遍历它们
for %%a in (C: D: E:) do ( dir /b /s %%a\yourfile.txt )
这可能不适用于网络驱动器,但这种轻微的修改应该
for %%a in (X: Y: Z:) do ( pushd %%a dir /b /s yourfile.txt popd )