[산출물] 특정 폴더의 파일목록이 필요할때
Util2014. 5. 29. 19:00
특정 폴더의 파일목록이 필요할때
cmd 에서 해당 폴더로 이동
1. 폴더 포함 파일목록
c:\work>dir /s /b /on > fileList.txt
fileList.txt 에 파일목록이 추출됨.
2. 폴더만
c:\work>dir /a:d /s /b /on /w /x > dirList.txt
3. 파일만(Full path , 이름순)
c:\work>dir /a:a /s /b /on /w /x > dirList.txt
* 폴더와 파일을 구분하여 사용해야할 때, 추출을 위한 스크립트 파일
'Util' 카테고리의 다른 글
[필수유틸] 폴더용량 확인 - space_sniffer (0) | 2013.11.12 |
---|
[필수유틸] 폴더용량 확인 - space_sniffer
Util2013. 11. 12. 19:00
Function
지정한 디렉토리 혹은 폴더의 하위 폴더의 용량을 용량별로, 시각적으로 리포팅한다.
Site
http://www.uderzo.it/main_products/space_sniffer/index.html
Last version
http://www.uderzo.it/main_products/space_sniffer/download.html
Summary
spacesniffer_1_1_4_0.zip
Program test
홈페이지에는 Tested on Windows 2000 XP
Vista
7
로 명시되어 있고,
Window8 에서는 직접 설치하여 실행한 결과 이상없음
'Util' 카테고리의 다른 글
[산출물] 특정 폴더의 파일목록이 필요할때 (0) | 2014.05.29 |
---|