답변:
프롬프트 (명령 행)에서 다음을 입력하십시오.
dir /S /P "Path\FileName"
결과를 텍스트 파일로 저장하려면 다음을 수행하십시오.
dir /S "Path\FileName" > "Path\ResultFilename"
/s
검색을 수행하는 반면 /p
화면에 가치있는 결과가 표시 되면 일시 중지됩니다. 더 많은 옵션을 위해 당신은 할 수 있습니다 dir /?
.
/s
옵션은 "검색"을 수행하지 않습니다. 이 dir
명령은 기본적으로 현재 폴더의 파일을 나열 하는 명령을 확장하여 하위 폴더의 모든 파일도 나열합니다. 이렇게하면 dir
명령 범위가 확장 되어 현재 드라이브로 제한되지 않고 드라이브 나 폴더에있는 모든 것을 완전히 나열합니다.
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