Can somebody remember what was the command to create an empty file in MSDOS using BAT file?
|
1
|
|
|
|
|
|
|
||||||||||||
|
|
|
copy NUL EmptyFile.txt DOS has a few special files (devices, actually) that exist in every directory, To avoid having any output at all, you can use copy /y NUL EmptyFile.txt >NUL
|
||||
|
|
|
type NUL > EmptyFile.txt After reading the previous two posts, this blend of the two is what I came up with. It seems a little cleaner. There is no need to worry about redirecting the "1 file(s) copied." message to NUL, like the previous post does, and it looks nice next to the "ECHO OutputLineFromLoop >> Emptyfile.txt" that will usually follow in a batch file. |
||
|
|
|
|
You can use a TYPE command instead of COPY. Try this: TYPE File1.txt>File2.txt Where File1.txt is empty. |
||
|
|
