Link to home
Start Free TrialLog in
Avatar of Sheldon Livingston
Sheldon LivingstonFlag for United States of America

asked on

DOS expert?

I'd like, via a DOS prompt, to list all files, regardless of extension, that end with " (1)".

For example, the list would look like:

New Text Doucment (1).txt
Mine (1).pub
etc
ASKER CERTIFIED SOLUTION
Avatar of Rgonzo1971
Rgonzo1971

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Sheldon Livingston

ASKER

Nice!  Didn't realize that you could use characters after the *.
You would probably rather want to use something like
dir /s/b C:\temp\*(1).*

Open in new window

to provide a starting folder to look at, and include all subfolders. If you want to see only that single folder, remove the /s.