-
Notifications
You must be signed in to change notification settings - Fork 3
CMD
tatsuei edited this page Feb 10, 2021
·
2 revisions
cd /d "your directory here without quotes"
dir /s
- shows files in all subdirectories
robocopy "source" "destination" "flags"
e.g: robocopy "c:/my folder" "d:/new folder" /E
robocopy "c:/mysourcefolder" "c:/mydestinationfolder" /E /MOVE
rd "folder name" /s /q
-
/s
- Removes all files/folders in the selected folder and deletes the folder itself -
/q
- Does the operation silently