Jose Rodriguez
Jose Rodriguez

Reputation: 10152

How a get full path of hidden files?

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

Answers (1)

Jamel Zhamil
Jamel Zhamil

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

Related Questions