To create a new folder named "Test" we use mkdir Test.extension
To rename a file named "Test1" to "Test2" we use ren Test1 Test2
To copy a file from one location to another we use the format copy location\filename.extension newlocation\newname.extension
6) XCOPY: This command allows you to copy a folder along with its contents from one location to another.
To copy a folder from one location to another we use the format xcopy /s/i location\name.extension newlocation\newname.extension
To delete all files in folder1 we first open folder1 and use the command del folder1.
To delete a particular file in folder1 named file1 we first open folder1 and use the command del file1.extension
To delete an empty folder we use the command RD[folder]