Small knitting here today to share a simple small method, homemade Bat Batch command automatically generate file list to facilitate one-time replication
Using a batch file to generate a list of files, friends will encounter the situation: Want to copy the name of all the files in a folder, or the name of all the files to list a list, with manual copy of the thankless task is easy to make mistakes.
Small knitting here today to share a simple small method, homemade Bat Batch command automatically generate a file list to facilitate one-time replication.
Method:
First enter the file directory, to create a. txt format of a plain document file.
Copy the following command in this text document and save it.
Copy code code as follows:
@echo off
dir/b/on >list.txt
Modify the suffix name of this text document from. txt to. bat
Double-click to execute this. bat file
A List.txt manifest document file is automatically generated
Double-click to open to see, inside is not the name of the file in the folder?