Answers for "create file command cmd"

17

create file command line

type nul > README.txt
Posted by: Guest on August-01-2020
5

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
Posted by: Guest on May-20-2020
0

create file command line

$ echo "See ya later, alligator" > crocodile/catch-phrase.txt
Posted by: Guest on March-02-2022

Browse Popular Code Answers by Language