In: Computer Science
Demonstrate creating, moving, and copying files from the Windows command line. (Document with steps and screenshots.)
Answer)
Using the Windows command line, we can move files using move
command:
Let us say we have something.doc file
We want to move it into new location: C:\location
The command will be:
move something.doc C:\location
The copy command will be:
copy something.doc C:\location
The above copy command will create another copy of something.doc in
the path C:\location
The command for creating a new file will be:
echo Sample text something.txt
The above process to create a file is using the echo command.