make new file command in cmd windows 10 code example
Example 1: make new file windows cmd
type nul > README.txt
Example 2: cmd make new file
$null > filename (including the $)
Example 3: make a file windows cmd
nul > FILENAME.EXTENSION
type nul > README.txt
$null > filename (including the $)
nul > FILENAME.EXTENSION