Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

file lists, excluding files, TC 8.x , win xp pro sp2

Hi,

I am looking for a way to find files where the first char is NOT A-z or 0-9.

DIR /b /s /[! somename.ext]

so can you do something like

DIR /b /s /[! [! a-z0-9]*.ext]

thanks.
 
Hi,

I am looking for a way to find files where the first char is NOT A-z or 0-9.

DIR /b /s /[! somename.ext]

so can you do something like

DIR /b /s /[! [! a-z0-9]*.ext]

Perhaps something like:

dir /a /s /b [!a-z0-9]*

If you want to exclude anything with extension .EXT:

dir /[!*.ext] /a /s /b [!a-z0-9]*
 

Similar threads

Back
Top