Can somebody remember what was the command to create an empty file in MSDOS using BAT file?
|
|||||||||||||||||
|
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
|
|||||||||
|
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 |
|||||||
|
|
REM. > empty.file |
|||
|
|
|
If there's a possibility that the to be written file already exists and is read only, use the following code:
If no file exists, simply do:
To supress any errors that may arise:
|
||||
|
|
|
You can use a
Where |
|||||
|
cmd.exe, are you? – user unknown May 10 '12 at 3:56