Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
1  
Also at stackoverflow.com/questions/1702762, "How to create an empty file at the command line?". – Peter Mortensen Jan 25 '10 at 12:13
2  
You aren't confusing DOS and cmd.exe, are you? – user unknown May 10 '12 at 3:56

7 Answers

up vote 74 down vote accepted
echo. 2>EmptyFile.txt
share|improve this answer
m_pGladiator, if you're satisfied with DannySmurf's answer, perhaps you should mark it as "accepted". – Sandman Oct 16 '08 at 21:02
3  
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
1  
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. :-) – Јοеу Mar 4 '09 at 3:47
8  
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 '09 at 15:34
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.

share|improve this answer
5  
+1 - the question does state an empty file, so the accepted answer is wrong. – Joe Oct 24 '08 at 8:35
3  
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
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.

share|improve this answer
6  
+1 this is the natural one that first comes to mind, not the contrivances with stderr etc. – Amit Naidu Jul 29 '11 at 18:58
You are correct. This method avoides the /y flag on the copy command. – djangofan 2 days ago

REM. > empty.file

share|improve this answer
It doesn't look like it would work but it does. Amazing. – djangofan 2 days ago

If there's a possibility that the to be written file already exists and is read only, use the following code:

ATTRIB -R filename.ext
CD.>filename.ext

If no file exists, simply do:

CD.>filename.ext

To supress any errors that may arise:

ATTRIB -R filename.ext>NUL
(CD.>filename.ext)2>NUL
share|improve this answer

fsutil file createnew file.cmd 0

share|improve this answer

You can use a TYPE command instead of COPY. Try this:

TYPE File1.txt>File2.txt

Where File1.txt is empty.

share|improve this answer
1  
You can also do type NUL>File2.txt – Danny Beckett Jan 12 at 16:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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