| Author |
regex needed to find all files with no extension
|
Jon Dornback
Ranch Hand
Joined: Apr 24, 2002
Posts: 137
|
|
i'm trying to locate all the files on my harddrive (windows) that have no file extension. i need a regex that will find all filenames with no "." in the name. anyone know how to do this? thanks, Jon
|
use the [CODE] tags - it makes it much easier for people to help you.
|
 |
Jon Dornback
Ranch Hand
Joined: Apr 24, 2002
Posts: 137
|
|
it's not as good as grep, but i found a solution in dos: dir *. /A:-d /S lists all files with no extension, not including directory listings, and recurses subdirectories.
|
 |
 |
|
|
subject: regex needed to find all files with no extension
|
|
|