Posted by Ted on March 13, 2010 at 09:29:05:
In Reply to: Re: DOS Dulicate Files posted by Valerie on October 02, 2009 at 19:53:38:
Since I only wish to eliminate all duplicate files which are have extensions of :
doc xls txt rtf bat mdb I will first issue these commands to store one file copy in a special new directoty called Unique with all file extensions ending in the letter q
Xcopy/s *.doc C:\Unique\*.doq
Xcopy/s *.xls C:\Unique\*.xlq
Xcopy/s *.txt C:\Unique\*.txq
(etc etc etc)
Then I will issue these delete commands to get rid of all duplivate files:
Del/s *.doc Del/s *.xls Del/s *.txt
(etc etc etc)
I will then have one copy of doq xlq txq rtq baq mdq extensions in a folder called Unique.
Then I will rename all doq as doc – xlq as xls – txq as txt (etc etc etc)
How does this sound ??