Windows create empty file

Create empty file

In Linux, we can create an empty file using ‘touch‘ command. There’s no equivalent command for touch in Windows OS. However, we can still create zero byte files using the command fsutil .

The syntax of fsutil command for creating a file is:

Below is the command you can run to create a empty text file.

The above command can be run from a batch file also. It works on all Windows editions: XP, Server 2003, Vista, Windows 7, Server 2008.

fsutil‘ command should be run from elevated administrator command prompt. Otherwise, you would get the below error message.

Using echo command

In Linux, we can use echo command also to create empty text files. This command is available in Windows also.
But using ‘echo’ we can’t create empty files. See below.

As you can see, it has created a file of size 13 bytes.

We can use the “TYPE” command also to create an empty file in Windows from the CMD, and it doesn’t require the administrative privileges unlike the fsutil command. below is the command you can run to create an empty file. (for example: empty.txt)

C:\>type nul > empty.txt

thank you…it worked.

your explaining is very helpful. but how to create file names with spaces in them?
thanks!

You need to wrap the file name in double quotes. For example

In dos we were using basic command copy with con argument, and something like EOF from unix. : )

C:\>copy config.sys + con
config.sys
con
shell=c:\command.com c:\ /p /e:512
^z

how do you now put data on the file like insted of it empty have it create a txt file with hello in it .

Как создать пустой файл в командной строке в Windows?

Как создать пустой файл в командной строке DOS / Windows?

но это всегда показывает, что файл был скопирован.

Есть ли другой способ в стандартном cmd?

Это должен быть метод, который не требует сенсорной команды от Cygwin или любых других нестандартных команд. Команду необходимо запустить из сценария, чтобы нельзя было использовать нажатия клавиш.

В том же духе Самуил предлагает в комментариях :

самый короткий, который я использую, в основном, от Nomad:

Это дает ошибку:

Но эта ошибка на stderr. И > только перенаправляет стандартный вывод, где ничего не было произведено.
Отсюда и создание пустого файла. Сообщение об ошибке можно игнорировать здесь.

(Оригинальный ответ, ноябрь 2009 г.)

( echo «» фактически поместил бы «» в файл! И echo без «.» вставил бы » Command ECHO activated » в файл . )

Примечание: полученный файл не пустой, но содержит последовательность обратной строки: 2 байта.

Это обсуждение указывает на настоящее пакетное решение для реального пустого файла:

« » Передает nul ответ на set/p команду, в результате чего используемая переменная остается неизменной. Как обычно set/p , строка справа от знака равенства отображается как подсказка без CRLF.

Так как здесь «строка справа от знака равенства» пуста . результатом является пустой файл.

Разница с cd. > filename (которая упоминается в ответе Патрика Каффа и также создает файл длиной 0 байт) состоит в том, что этот «бит перенаправления» ( трюк) можно использовать для отображения строк без какого-либо CR :

Команда dir должна указывать размер файла в 11 байтов: » helloworld! «.

How To Create Files – From The Command Line (The Easy Way!) – Windows, CMD

Jump Right In:

Create A File Using CMD (Empty, Text, Batch).

Creating files with the current date.

Creating a dummy file with a specific size.

Create Files From Different Directories.

Create multiple files at once — Using CMD.

What We’ll Learn:

Welcome!
This guide is all about creating new files from the windows command line.

  • We’ll start by learning, how to navigate to the location in which we want to create our file or folder from the command prompt.
  • How to use the Echo command along with a redirector to create all sorts of files.
  • How to embed the current date into the name of your new file.
  • How to create dummy files with a specific size using FSutil.
  • And finally, we’ll learn how to use a for loop to create multiple files at once with a single command.
Читайте также:  Красивый блокнот для windows

Lets get started!

Before we begin learning how to create files we must first learn how to change the location of our command line into to the location in which we want to create our new file.

For this example, let’s assume that we want to create our file in our desktop directory.


1)
Open a command prompt without administrator privileges

By default, the command prompt is located at a folder within your users directory that’s named after your computers username (C:\Users\MyPC)


2)
Use the “Dir” command to view every file and folder in the current directory.

The name of every file and folder as well some information about each of them will immediately appear.


3)
Navigate to the directory of your choice using the “CD” command.

“CD” stands for “Change Directory”. Remember to surround the name of the directory you want to navigate into within quotes.

Your current working directory will immediately change.

And that’s it! You should now have navigated into the directory of your choice.

In case you made a mistake you can navigate to the previous directory by typing Cd followed by two dots.

The double dots represent the parent directory.

Now that we are located in the correct directory lets create our file.

Create A File Using CMD (Empty, Text, Batch).

Lets start with learning how to create files from our command line. To do so we will need to use the “Echo” command along with a redirector.

What exactly is echo and a redirector I hear you ask?

This might start to sound complicated, but don’t worry its actually pretty simple.

  • Echo is primarily used to print variables or strings to the command line, similar to “print” or “Console.WriteLine” in other programming languages.
  • Redirectors are special symbols that can be used complete many functions such as combine two commands or redirect the output of one command into input for another.

Do you see where I am going with this?

We can use the echo command to print a string and redirect its output into a new file by using a redirector, specifically the greater than redirector (>).

Lets see what that would look like:

Text Files:

Lets start by creating a new text file.

To do so all we have to do is type the echo command followed by the text we want our new file to have, the grater than redirector, and the name of your new file within quotes along with the .txt extension.

You should see a new file in your current directory. Pretty simple right?

To view the contents of a file we just created directly from the command line we can use the “Type” command. Simply enter type followed by the name of the file we just created.

The contents of the file will immediately be shown in the command prompt.

Читайте также:  Помощь по восстановлению linux

Apart from creating a new file we can add or append text to an existing text file. To do so we need to use the greater than symbol twice. Here is what that would look like:

Our file will now contain the following text:

Empty Text Files

In many cases you might want to crate a completely empty text file. The syntax for this command is very similar to our previous command however this time we need to add a dot directly after the echo command.

An empty file will immediately appear in your current directory.

In case you are wondering, the dot tells the echo command to not output anything.

Batch Files

While creating text files is nice, in may case you will want to create batch files. Doing so is very simple, all we have to do is replace the extension of the name of our new file from .txt to .bat.

Here is what that would look like:

And a new batch file will immediately be created in your current directory.

Literally Any type of File:

In a similar way by using the extension of our choice we can create literally any type of file.

  • .docx Creates word documents.
  • .py Creates python scripts.
  • .sql Creates SQL databases.
  • And so on…

Creating files with the current date — Using CMD:

You can embed the current date right into the name of the file you are creating by taking advantage of the %Date% automatic variable. Here is what our command would look like:

This command will create a text file with the current date as its name in our current directory.

In my case the file will be named:

You might be wondering what /=- does.

By default, the date in the %Date% variable is stored in this format:

However, to use this as the name of a file we need to replace the backward slashes with any other symbol, so that the command line doesn’t misinterpret our date as a directory.

That is exactly what /=- does, you can replace the dash with any symbol of your choice.

Creating a dummy file with a specific size — Using CMD:

Using the windows command prompt you can create empty, dummy files with a specific size of your choice.

To do so we need to use the FSutil command instead of echo, which is what we have been using thus far.

FSutil stands for file system utility and as the name suggests it can be used to perform various operations on our file system.

But you don’t care about any of that, you just want to create a file.

To do so all you have to do is use the following syntax:

Confused? Lets break it down:

  • The File parameter instructs the FSutil command to create a file. Duh.
  • CreateNew Instruct it to create a new item.
  • Them we have the name of our new file, in this case: Dummy File.
  • And finally, the size we want our file to have in bytes.

In this case a 10 MB file will be created.

Adjust the number of bytes to create a file with the size you want.

In case you want to convert gigabytes to bytes, use this online converter.

Create Files From Different Directories — From CMD:

In all the above examples our new files will be created in the current directory.

In case you want to create your new file in a directory other than your current one, you need to enter your target directory just before the name of your new file.

So here is what our echo command would look like:

This command will create an empty file in our documents directory.

To make it work for you replace with your computers username.

And here is what our FSutil command would look like:

This command will create a dummy file with a 10 MB size in our desktop directory.

Once again replace with your computers username.

Читайте также:  Постоянный перезапуск проводника windows

Create multiple files at once — Using CMD:

In all the above examples we created only a single file. The beauty of the command line however is that you can complete complex, time consuming tasks in an instance, such as creating multiple files at once.

To do so, we need to use a for loop. For loops repeat an instruction a certain number of times.

Lets take a look at all the ways we can use a for loop to create multiple files:

Numbered Files (File1, File2, File3):

Lets start with creating numbered files or, files for which only a number changes between their names.

Without further a do, here is what our command would look like:

This command will create ten empty files in our current directory with the following names: File 1.txt, File 2.txt, File 3.txt, and so on…

This command might also look a little complicated, so let’s break it down:

  • The /L parameter instructs the for command to iterate through the numbers in our parentheses, instead of using them directly as the names of our files.
  • Our A parameter specifies a single letter replaceable parameter. You can replace A with any letter of your choice. This is similar to a variable, in the sense that its value changes.
  • After that we have our condition, the first number specifies the starting number, the second number is the step, and the third number is the ending number.
  • And finally, in parenthesis we have the command that will be executed every time the loop is executed.

Adjust the above command accordingly to suit your needs.

To create your files in a different directory, add the path of your choice, just before the name of your new files.

If you are unsure, here’s what that would look like:

Replace with your computers username.

Also, if you are planning on running any of these commands from a batch script you need to use two percentage signs instead of one, so that they are interpreted correctly.

Named Files (First, Second, Third):

Creating named files or, multiple files with different, specified names is quite similar.

Here is what that would look like:

The above command will create three files in your current directory with the following names: First.txt, Second.txt, Third.txt.

To make this command work for you, replace the names you want your files to have in the first parenthesis. And if necessary, replace, or adjust the second parenthesis with the command that will create your files the way you require.

The number of files that will be created depends entirely on how many file names you feed into the loop.

Once again to create your files in a different directory, add the target path just before the A parameter in the second parenthesis. Take a look at the above commands if you need a reference.

Finally, if you are planning on running this command from a batch script instead of the command line, you need to use two percentage signs instead of one so that your command is interpreted correctly.

Summary:

  • Navigate to the directory you want to create a file into using the “CD” and “Dir” commands.
  • Use the echo command along with the greater than redirector to create any type of file.
  • Take advantage of the %Date% automatic variable and embed the current date into the names of your files.
  • Use the FSutil command to crate a new file with a specific size.
  • Enter a path before the name of your file to create it in any directory.
  • Use a For loop to create multiple numbered or named files at once.

That’s It!

You now know how to create many types of files directly from the command prompt.

If you liked this short guide take a look at a few of our other posts related to the windows command line, or if you really liked it consider enrolling in our video course where you will learn the ins and outs of the Windows command Line.

Оцените статью