Reputation: 10152
I want get a full paths of files, including hidden files and folders with specific extensions in one folder and print this path. How I can do this?
Upvotes: 0
Views: 197
Reputation: 26
You can use:
for /f "delims=" %%p in ('dir /B /S /A *.ext') do echo %%p
A option /A includes a hidden files.
Upvotes: 1