Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Finding files from the command line

Status
Not open for further replies.

yahve

Programmer
Nov 14, 2000
159
CA
Hi,

How can I find specific files from the command line (similar to the find command in Linux)?

Thanks.
 
If you want to find test.txt on the C: drive, including subdirctories, use the /s option.
Code:
dir text.txt /s
I believe there is help on this as well:
Code:
dir /?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top