create file from command prompt code example

Example 1: how to create empty file cmd windows

copy NUL test.txt

Example 2: create a file cmd

type NUL > EmptyFile.txt
# also
echo. 2>EmptyFile.txt
copy nul file.txt > nul # also in qid's answer below
REM. > empty.file
fsutil file createnew file.cmd 0 # to create a file on a mapped drive

Example 3: terminal command to create new file

touch filename.txt

Example 4: how to create files in command line

notepad mynewfile.*insert file extension here*

Tags:

Misc Example