Basic CMD Commands (Windows) - koglak/SWE573 GitHub Wiki

Command Description Example
exit Close the window exit
cd Change directory cd C:\Users\kogla
dir List dicroctaries/files dir
copy Copy file copy C:\Users\kogla\test.txt
move Move file move C:\Users\kogla\test.txt
mkdir Create new directory mkdir newProject
rmdir Delete file rmdir C:\Users\kogla\test.txt
del Delete file del C:\Users\kogla\test.txt
rmdir /S Delete directory rmdir /S C:\Users\kogla\project
cd /? Get help for a command cd /mkdir

More: 21 CMD Commands All Windows Users Should Know