Sep 27, 2001 #1 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.
Hi, How can I find specific files from the command line (similar to the find command in Linux)? Thanks.
Sep 27, 2001 #2 dsi Programmer Mar 13, 2000 964 US 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 /? Upvote 0 Downvote
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 /?