Author: LengF Update: 2011-06-25
[1]. LAN file resume
Because we often copy data, when the file is large, sometimes the link is broken. The file download fails.
So we will think of the problem of file resume. We can use third-party software, but it will be troublesome for convenience. I checked the command copy provided by the data system to resume file transfer. The command is as follows:
Copy/z \ serveripfolder * d: file # copy the folder floder on serverip to the local d: file
[2] DOS enters a file with spaces or regular names
Window is used to read long directory file names. For example, the program files in the directory contains spaces in the middle. For example, we need to enter the C: program filesfolder directory. We can use either of the following methods:
Cd c: progra ~ 1 folder # method 1
Cd c: "program files" folder # method 2
The maximum file name supported by DOS is 8 characters.
[Note: Subsequent skills will be constantly supplemented based on actual applications. They are basic methods for writing .]