Aqui está uma solução em lote do Windows (pode ser um tempo consumindo uma):
@ECHO OFF >NUL
@SETLOCAL enableextensions disabledelayedexpansion
for %%G in (a b c d e f g h i j k l m n o p q r s t u v w x y z) do (
if exist %%G:\NUL (
echo %%G: drive
for /F "tokens=*" %%H in ('where /r %%G:\ rand.txt 2>NUL') do (
echo %%H
explorer.exe /e,/select,"%%~fH"
)
)
)
@ENDLOCAL
@GOTO :eof
Em vez de echo %%H
, você tem o caminho completo para o nome do arquivo ...
Editar : where /r %%G:\ rand.txt 2>NUL
(importante: 2>NUL
) para eliminar mensagens de erro ERROR: The system cannot find the file specified
se o diretório inicial não existir e INFO: Could not find files for the given pattern(s)
como nos próximos exemplos (enumeração fragmentária):
d:\xxx>where /r C:\bat\ randx.txt
ERROR: The system cannot find the file specified.
d:\xxx>echo %errorlevel%
2
d:\xxx>where /r d:\bat\ randx.txt
INFO: Could not find files for the given pattern(s).
d:\xxx>echo %errorlevel%
1
d:\xxx>where /r d:\bat\ rand.txt
d:\bat\files\rand.txt
d:\xxx>echo %errorlevel%
0
d:\xxx>