dir command to target folder
top of page

dir command to target 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