Search found 2 matches

by Rob.Stow
23 Mar 2016 00:04
Forum: DOS Batch Forum
Topic: How to make Copy, xCopy & Move ignore short file names?
Replies: 2
Views: 2514

Re: How to make Copy, xCopy & Move ignore short file names?

Many thanks foxidrive - I'm looking forward to trying that out next time I have a big batch of files to clean up and organize.
by Rob.Stow
22 Mar 2016 17:44
Forum: DOS Batch Forum
Topic: How to make Copy, xCopy & Move ignore short file names?
Replies: 2
Views: 2514

How to make Copy, xCopy & Move ignore short file names?

In batch files like this simple example mx.cmd md "%1 %2" move *%1?%2*.* "%1 %2" move *%2?%1*.* "%1 %2" move *%2,?%2*.* "%1 %2" The move command often moves files that it shouldn't because the real file names don't match *%1*%2*.* but the short file names do. ...