I'm developing a batch file within which I'm using the following pattern:
*.res
I want to select all files with the extension .res, but this pattern is matching files with an extension of .resources also.
In other words, it acts like I'm specifying *.res* but I'm not.
Is there a way I can prevent the command line from evaluating short 8.3 filenames?
http://support.microsoft.com/kb/210638
Is this what you are referring to?
It doesn't appear to affect existing short file names, however.
– Avalanchis Aug 24 '10 at 14:30DEL *1.*deletes all files in folder – user4098326 Mar 06 '15 at 00:24