N
N
NortH212015-07-20 09:08:56
cmd/bat
NortH21, 2015-07-20 09:08:56

How to find files by extension on all drives?

Good day. We need a script that will search all disks for files by extension and display their paths as separate variables. There are only pieces in my head.
View discs:

FOR /F "Tokens=1,2 Delims==" %%i In ('WMIC LogicalDisk Get Name^,VolumeSerialNumber /Value^|Find "="') Do if %%i==Name echo %%j&& set /a Count +=1

Дальше можно из %i взять %~dpi только путь как раз, но как вывод распехать в отдельные переменные что то не догоню.
Найти файлы:
WHERE /R Диск *.txt
В итоге хочется видеть переменные типа %path1%, %path2%, %path3% ну или как то так.
Заранее спасибо если кто поможет.

Answer the question

In order to leave comments, you need to log in

2 answer(s)
S
sbh, 2015-07-20
@sbh

Можно поинтересоваться для чего нужен сей функционал?

E
Eugene, 2015-07-20
@yellowmew

PowerShell
You can refer to any element found by $ListFiles[index]
For example $ListFiles[5].FullName

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question