vote up 7 vote down star
1

Can somebody remember what was the command to create an empty file in MSDOS using BAT file?

flag

4 Answers

vote up 10 vote down check
echo. 2>EmptyFile.txt
link|flag
m_pGladiator, if you're satisfied with DannySmurf's answer, perhaps you should mark it as "accepted". – Sandman Oct 16 '08 at 21:02
This echoes a newline to stdout, though... my answer doesn't. – ephemient Oct 17 '08 at 4:08
That's a fairly tangential concern, I think. Not really part of the problem. – DannySmurf Oct 17 '08 at 13:48
Sometimes it's relevant; I used to have touch lying around until I got the idea of just copying NUL (or type NUL>file) for the purpose of getting 0-byte files. :-) – Johannes Rössel Mar 4 at 3:47
1  
To merge ephemient's answer and this one, you could do: "echo. >NUL 2>EmptyFile.txt" to achieve the same results without outputting a newline – cmptrgeekken Oct 25 at 15:34
vote up 14 vote down
copy NUL EmptyFile.txt

DOS has a few special files (devices, actually) that exist in every directory, NUL being the equivalent of UNIX's /dev/null: it's a magic file that's always empty and throws away anything you write to it. Here's a list of some others; CON is occasionally useful as well.

To avoid having any output at all, you can use

copy /y NUL EmptyFile.txt >NUL

/y prevents copy from asking a question you can't see when output goes to NUL.

link|flag
+1 - the question does state an empty file, so the accepted answer is wrong. – Joe Oct 24 '08 at 8:35
DannySmurf's solution actually does create an empty file -- a newline goes to stdout, nothing goes to stderr (directed into the new file). But thanks for the +1 anyways – ephemient Oct 24 '08 at 18:43
vote up 4 vote down

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.

link|flag
vote up 1 vote down

You can use a TYPE command instead of COPY.

Try this: TYPE File1.txt>File2.txt

Where File1.txt is empty.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.