top of page

When you use a batch file to copy files from one folder to another, and the destination folder already has files with the same name, Windows will prompt you to indicate if you want to overwrite the existing file.

In order to avoid this edit the file this way, modifying the XCOPY command

echo "No" | copy/-Y "C:\FooFolder\beer\yum1.jpg" "C:\FooFolder\beer\JPG" echo "No" | copy/-Y "C:\FooFolder\beer\yum2.jpg" "C:\FooFolder\beer\JPG" echo "No" | copy/-Y "C:\FooFolder\beer\yum3.jpg" "C:\FooFolder\beer\JPG" echo "No" | copy/-Y "C:\FooFolder\beer\yum4.jpg" "C:\FooFolder\beer\JPG"


 
 
  • Oct 20, 2019

If you want a simple list of files in a directory enter this code:

dir /s /w >files.txt

. .. . in a batch file (a regular text file, but switch then the extension to bat and then click it.)  The /w option sets the results to the wide format.  The file names are listed after each folder. 


 
 

Some great code for a Windows batch file was posted here, which will allow you to very easily run the Windows dir command on any folder.

Enter this code in a text file and then save the file with the extension '.bat'.

@ECHO OFF

SET targetPath="%~1"

SET ToolPath=%~dp0

dir %targetPath% /b /s /a-d > "%ToolPath%list.txt"

Then select the folder whose contents you want a list of and drag it from one Windows Explorer window into a different one in which the bat file is saved.

A new text file will be generated that lists the contents of the folder (and any subfolders). The full path to each file is listed - there is no other content.


 
 

Sean O'Shea has more than 20 years of experience in the litigation support field with major law firms in New York and San Francisco.   He is an ACEDS Certified eDiscovery Specialist and a Relativity Certified Administrator.

The views expressed in this blog are those of the owner and do not reflect the views or opinions of the owner’s employer.

If you have a question or comment about this blog, please make a submission using the form to the right. 

Your details were sent successfully!

© 2015 by Sean O'Shea . Proudly created with Wix.com

bottom of page