-
[Windows] 윈도우 파일 및 폴더 삭제 명령어기술과 산업/아키텍처 2019. 7. 26. 19:43728x90
reference: https://www.ghacks.net/2017/07/18/how-to-delete-large-folders-in-windows-super-fast/
How to delete large folders in Windows super fast - gHacks Tech News
Find out how to delete huge folders with thousands of files and folders super fast on any version of the Microsoft Windows operating system.
www.ghacks.net
DEL /F/Q/S *.* > NUL
- /F -- forces the deletion of read-only files.
- /Q -- enables quiet mode. You are not ask if it is ok to delete files (if you don't use this, you are asked for any file in the folder).
- /S -- runs the command on all files in any folder under the selected structure.
- *.* -- delete all files.
- > NUL -- disables console output. This improves the process further, shaving off about one quarter of the processing time off of the console command.
RMDIR /Q/S foldername
- /Q -- Quiet mode, won't prompt for confirmation to delete folders.
- /S -- Run the operation on all folders of the selected path.
- foldername -- The absolute path or relative folder name, e.g. o:/backup/test1 or test1
728x90'기술과 산업 > 아키텍처' 카테고리의 다른 글
SonarQube 소스코드 정적 품질 분석 (0) 2019.10.21 [컨테이너] 도커 컨테이너 Timezone 설정 (0) 2019.10.10 [SW Eng.] 코딩 컨벤션(Coding Convention) (0) 2016.11.05 [SW Eng.] git add 명령어 (2) 2016.10.20 오라클 페이징 쿼리 (1) 2016.02.26