Batch File Copy full file names for all files in folder and sub folders to text file.
(replace > with )
dir C:\Data\Documents\*.* /b /s /a:-D > C:\Documents.txt
Batch File: Copy just file name of files in folder to text file:
(replace > with )
dir C:\Data\Documents\*.* /o-n-d /b > C:\Files.txt
No comments:
Post a Comment