1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-22 22:22:11 +02:00
cdt/llvm/org.eclipse.cdt.managedbuilder.llvm.ui/scripts/find_path.bat
2013-03-03 22:50:09 -05:00

9 lines
No EOL
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
)
)
)