CMD를 사용하여 Windows에서 파일을 검색 할 수 있습니까?


27

명령 줄을 사용하여 디렉토리의 파일과 Windows의 모든 하위 디렉토리를 검색하는 명령을 원합니다. 사용 가능한 모든 명령을 보았지만이 작업을 수행하는 데 적합한 명령을 찾을 수 없습니다.

답변:


36

프롬프트 (명령 행)에서 다음을 입력하십시오.

dir /S /P "Path\FileName"

결과를 텍스트 파일로 저장하려면 다음을 수행하십시오.

dir /S "Path\FileName" > "Path\ResultFilename"

3
파일이 숨겨져 있거나 시스템 파일 인 경우 / a 매개 변수도 포함시킬 수 있습니다! 8-)
Richard Lucas

조금 더 많은 정보 : /s검색을 수행하는 반면 /p화면에 가치있는 결과가 표시 되면 일시 중지됩니다. 더 많은 옵션을 위해 당신은 할 수 있습니다 dir /?.
Luke

1
/s옵션은 "검색"을 수행하지 않습니다. 이 dir명령은 기본적으로 현재 폴더의 파일을 나열 하는 명령을 확장하여 하위 폴더의 모든 파일도 나열합니다. 이렇게하면 dir명령 범위가 확장 되어 현재 드라이브로 제한되지 않고 드라이브 나 폴더에있는 모든 것을 완전히 나열합니다.
Hashim

16

전체 경로를 인쇄 하려면 /b스위치를 사용하면 dir도움이 될 수 있습니다. 말하다,C:\ > dir /b /s *file*.*

여전히 find또는로 결과를 필터링하고 for출력을 파일로 리디렉션 할 수 있습니다>filename


2

dir파일을 검색하기위한 것이 아니라 디렉토리를 나열하기위한 것이었지만 이제는 where여러 파일 형식을 검색하는 데 사용할 수있는 파일이 있습니다. where /R c:\Users *.dll *.exe *.jpg

cmd에서 간단한 파일 검색을 수행하는 방법에 대한 전체 구문과 답변을 확인하십시오.

WHERE [/R dir] [/Q] [/F] [/T] pattern...

Description:
    Displays the location of files that match the search pattern.
    By default, the search is done along the current directory and
    in the paths specified by the PATH environment variable.

Parameter List:
    /R       Recursively searches and displays the files that match the
             given pattern starting from the specified directory.

    /Q       Returns only the exit code, without displaying the list
             of matched files. (Quiet mode)

    /F       Displays the matched filename in double quotes.

    /T       Displays the file size, last modified date and time for all
             matched files.

    pattern  Specifies the search pattern for the files to match.
             Wildcards * and ? can be used in the pattern. The
             "$env:pattern" and "path:pattern" formats can also be
             specified, where "env" is an environment variable and
             the search is done in the specified paths of the "env"
             environment variable. These formats should not be used
             with /R. The search is also done by appending the
             extensions of the PATHEXT variable to the pattern.

     /?      Displays this help message.

  NOTE: The tool returns an error level of 0 if the search is
        successful, of 1 if the search is unsuccessful and
        of 2 for failures or errors.

Examples:
    WHERE /?
    WHERE myfilename1 myfile????.*
    WHERE $windir:*.* 
    WHERE /R c:\windows *.exe *.dll *.bat  
    WHERE /Q ??.??? 
    WHERE "c:\windows;c:\windows\system32:*.dll"
    WHERE /F /T *.dll 
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.