Notice
Recent Posts
Recent Comments
Link
«   2024/05   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
Tags
more
Archives
Today
Total
관리 메뉴

melius

[CMD] 파일검색 본문

et cetera

[CMD] 파일검색

melius102 2020. 8. 17. 17:46

1. 파일 및 폴더 검색 (dir)

docs.microsoft.com/en-us/windows-server/administration/windows-commands/dir

> dir /b/s *.txt

# option
/?  도움말
/a  hidden and system files 포함
/s  하위 디렉터리 포함
/b  최소 포맷 사용

 

 

2. 일자기준 파일검색 (forfiles)

docs.microsoft.com/en-us/windows-server/administration/windows-commands/forfiles

# 이름 기준 검색
> forfiles /s /m *.txt /c "cmd /c echo @path @fdate"

# 일자 기준 검색
> forfiles /s /d 2020-08-17 /m *.* /c "cmd /c echo @fdate @fsize @path"

# option
/?  도움말
/p  경로특정
/m  검색파일
/s  하위 디렉터리 포함  
/d  날짜
/c  명령어 실행

 

 

 

'et cetera' 카테고리의 다른 글

[Git] 명령어  (0) 2020.10.25
[Chrome] 유용한 기능  (0) 2020.09.01
[VS Code] Django pylint(no-member) error  (0) 2020.07.10
[Git] 고급 사용법  (0) 2020.03.04
[real estate] 부동산 분석  (0) 2020.02.20
Comments