mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
9 lines
195 B
Batchfile
9 lines
195 B
Batchfile
![]() |
@echo OFF
|
||
|
|
||
|
for %%D in (c,d,e) do (
|
||
|
If exist %%D:\ (
|
||
|
for /f "delims=" %%f in ('dir /b /s %%D:\%1 2^> NUL') do (
|
||
|
@echo %1 found: %%~dpf
|
||
|
)
|
||
|
)
|
||
|
)
|