forfiles.exe ForFiles - Executes a command on selected files 4e5e50492027b8f2af1a65485b9dd4b0

File info

File name: forfiles.exe.mui
Size: 11264 byte
MD5: 4e5e50492027b8f2af1a65485b9dd4b0
SHA1: cc9ca52903724b73ea75cd8dd4c02b5144bf172b
SHA256: 5ecad7e35cc0a0b45a35ce1e5ce071ebfa1660f94bffde51651492abac15eb5e
Operating systems: Windows 10
Extension: MUI
In x64: forfiles.exe ForFiles - Executes a command on selected files(32비트)

Translations messages and strings

If an error occurred or the following message in Korean language and you cannot find a solution, than check answer in English. Table below helps to know how correctly this phrase sounds in English.

id Korean English
151사용법을 보려면 "FORFILES /?"를 입력하십시오.
Type "FORFILES /?" for usage.
152구문이 잘못되었습니다.
Invalid syntax.
154잘못된 날짜가 지정되었습니다.
Invalid date specified.
155검색 조건에 해당되는 파일을 찾을 수 없습니다.
No files found with the specified search criteria.
162파일 형식을 찾을 수 없습니다.
not found.
163은(는) 올바른 실행 파일이 아닙니다.
is not a valid executable.
164TRUE TRUE
165FALSE FALSE
167다음에 대한 액세스가 거부되었습니다. Access is denied for
169.
.
170" "
171지정한 디렉터리가 없습니다.
The specified directory does not exist.
172UNC 경로(\\컴퓨터\공유)는 지원되지 않습니다.
UNC paths (\\machine\share) are not supported.
173MM%sdd%syyyy MM%sdd%syyyy
174MM%syyyy%sdd MM%syyyy%sdd
175dd%sMM%syyyy dd%sMM%syyyy
176dd%syyyy%sMM dd%syyyy%sMM
177yyyy%sdd%sMM yyyy%sdd%sMM
178yyyy%sMM%sdd yyyy%sMM%sdd
201

202FORFILES [/P pathname] [/M searchmask] [/S]
FORFILES [/P pathname] [/M searchmask] [/S]
203[/C command] [/D [+ | -] {%s | dd}]

[/C command] [/D [+ | -] {%s | dd}]

204설명:
Description:
205파일(또는 파일 집합)을 선택하고 파일에 명령을
Selects a file (or set of files) and executes a
206실행합니다. 일괄 작업에 유용합니다.

command on that file. This is helpful for batch jobs.

207매개 변수 목록:
Parameter List:
208/P pathname 검색을 시작할 경로를 지정합니다.
/P pathname Indicates the path to start searching.
209현재 작업 디렉터리(.)가 기본
The default folder is the current working
210폴더입니다.

directory (.).

211/M searchmask 검색 마스크에 따라 파일을 검색합니다.
/M searchmask Searches files according to a searchmask.
212'*'이 기본 검색 마스크입니다.

The default searchmask is '*' .

213/S 하위 폴더를 포함하도록
/S Instructs forfiles to recurse into
214지정합니다. 예, "DIR /S"

subdirectories. Like "DIR /S".

215/C command 각 파일에 실행할 명령을 지정합니다.
/C command Indicates the command to execute for each file.
216명령 문자열을 큰따옴표로 묶어야
Command strings should be wrapped in double
217합니다.

quotes.

218"cmd /c echo @file"이 기본 명령입니다.

The default command is "cmd /c echo @file".

219명령 문자열에 다음 변수를 사용할 수
The following variables can be used in the
220있습니다.
command string:
221@file - 파일 이름을 반환합니다.
@file - returns the name of the file.
222@fname - 확장명 없이 파일 이름을
@fname - returns the file name without
223반환합니다.
extension.
224@ext - 파일의 확장명만
@ext - returns only the extension of the
226@path - 파일의 전체 경로를 반환합니다.
@path - returns the full path of the file.
227@relpath - 파일의 상대 경로를
@relpath - returns the relative path of the
229@isdir - 파일 형식이 디렉터리인 경우 "TRUE"를
@isdir - returns "TRUE" if a file type is
230반환하고 파일인 경우 "FALSE"를 반환합니다.
a directory, and "FALSE" for files.
231@fsize - 파일의 크기(바이트)를
@fsize - returns the size of the file in
233@fdate - 파일을 마지막으로 수정한 날짜를
@fdate - returns the last modified date of the
235@ftime - 파일을 마지막으로 수정한 시간을
@ftime - returns the last modified time of the
236반환합니다.

file.

237명령줄에 특수 문자를 포함하려면
To include special characters in the command
2380xHH 형식의 16진수 코드(예, 탭은 0x09)를
line, use the hexadecimal code for the character
239사용하십시오. 내부 CMD.exe 명령
in 0xHH format (ex. 0x09 for tab). Internal
240앞에는 "cmd /c"를 사용해야
CMD.exe commands should be preceded with
241합니다.

"cmd /c".

242/D date 지정한 날짜와 마지막 수정한 날짜가 늦거나
/D date Selects files with a last modified date greater
243같은(+) 또는 빠르거나 같은(-) 파일을
than or equal to (+), or less than or equal to
244찾습니다.
(-), the specified date using the
245날짜 포맷은 "%s"입니다.
"%s" format; or selects files with a
246또한 마지막 수정한 날짜가 현재 날짜에
last modified date greater than or equal to (+)
247"dd"일을 더한 날짜보다 늦거나 같은(+)
the current date plus "dd" days, or less than or
248또는 현재 날짜에서 "dd"일을 뺀 날짜보다
equal to (-) the current date minus "dd" days. A
249작거나 같은(-) 파일을 찾습니다.
valid "dd" number of days can be any number in
250유효한 "dd" 범위는 0에서 32768까지입니다.
the range of 0 - 32768.
251부호를 지정하지 않으면 "+"가 기본값입니다.

"+" is taken as default sign if not specified.

252/? 이 도움말 메시지를 표시합니다.

/? Displays this help message.

253예:
Examples:
254FORFILES /?
FORFILES /?
255FORFILES
FORFILES
256FORFILES /P C:\WINDOWS /S /M DNS*.*
FORFILES /P C:\WINDOWS /S /M DNS*.*
257FORFILES /S /M *.txt /C "cmd /c type @file | more"
FORFILES /S /M *.txt /C "cmd /c type @file | more"
258FORFILES /P C:\ /S /M *.bat
FORFILES /P C:\ /S /M *.bat
259FORFILES /D -30 /M *.exe
FORFILES /D -30 /M *.exe
260/C "cmd /c echo @path 0x09 was changed 30 days ago"
/C "cmd /c echo @path 0x09 was changed 30 days ago"
261FORFILES /D %s
FORFILES /D %s
262/C "cmd /c echo @fname is new since Jan 1st 2001"
/C "cmd /c echo @fname is new since Jan 1st 2001"
263FORFILES /D +%s /C "cmd /c echo @fname is new today"
FORFILES /D +%s /C "cmd /c echo @fname is new today"
264FORFILES /M *.exe /D +1
FORFILES /M *.exe /D +1
265FORFILES /S /M *.doc /C "cmd /c echo @fsize"
FORFILES /S /M *.doc /C "cmd /c echo @fsize"
266FORFILES /M *.txt /C "cmd /c if @isdir==FALSE notepad.exe @file" FORFILES /M *.txt /C "cmd /c if @isdir==FALSE notepad.exe @file"
5001오류: ERROR:
5002경고: WARNING:
5003성공: SUCCESS:
5004정보: INFO:
5005N/A N/A
5501%s에 대한 암호를 입력하십시오. Type the password for %s:
5502로컬 연결에 대한 사용자 자격 증명을 전달하고 있습니다.
Passing the user credential for local connection.
5503대상 시스템에서 Windows XP 이상이 실행되어야 합니다.
The target system must be running Windows XP or above.
5504원격 시스템에서 Windows 2000 이상이 실행되어야 합니다.
The remote system must be running Windows 2000 or above.
5601구문이 잘못되었습니다. '%s'값을 '%s' 옵션에 사용할 수 없습니다.
%s
Invalid syntax. '%s' value is not allowed for '%s' option.
%s
5602구문이 잘못되었습니다. '%s'에 대해 올바른 숫자 값을 지정하십시오.
%s
Invalid syntax. Specify valid numeric value for '%s'.
%s
5603구문이 잘못되었습니다. '%s'에 대해 올바른 부동 소수점 값을 지정하십시오.
%s
Invalid syntax. Specifiy valid floating point value for '%s'.
%s
5604구문이 잘못되었습니다. 필수 옵션 '/%s'이(가) 없습니다.
%s
Invalid syntax. Mandatory option '%s' is missing.
%s
5605구문이 잘못되었습니다. '%s' 옵션은 '%d'번 이상 허용되지 않습니다.
%s
Invalid syntax. '%s' option is not allowed more than '%d' time(s).
%s
5607잘못된 인수/옵션 - '%s'.
%s
Invalid argument/option - '%s'.
%s
5608구문이 잘못되었습니다. 기본 인수가 없습니다.
%s
Invalid syntax. Default argument is missing.
%s
5609명령줄 인수는 255자를 초과할 수 없습니다.
Length of the command line argument should not exceed 255 characters.
5610구문이 잘못되었습니다. 기본 옵션은 '%d'번 이상 허용되지 않습니다.
%s
Invalid syntax. Default option is not allowed more than '%d' time(s).
%s
5611구문이 잘못되었습니다. '%s'에 대한 값이 필요합니다.
%s
Invalid syntax. Value expected for '%s'.
%s
5612구문이 잘못되었습니다. '%s' 값은 기본 인수로 허용되지 않습니다.
%s
Invalid syntax. '%s' value is not allowed as default argument.
%s
5613사용법을 보려면 "%s /?"를 입력하십시오. Type "%s /?" for usage.
5614'%s' 옵션 값은 비워둘 수 없습니다.
%s
Value for '%s' option cannot be empty.
%s
5615기본 옵션 값은 비워둘 수 없습니다.
%s
Value for default option cannot be empty.
%s
5616구문이 잘못되었습니다. 기본값에 대해 올바른 숫자 값을 지정하십시오.
%s
Invalid syntax. Specify valid numeric value for default.
%s
5617구문이 잘못되었습니다. 기본값에 대해 올바른 부동 소수점 값을 지정하십시오.
%s
Invalid syntax. Specifiy valid floating point value for default.
%s
5618기본 옵션 값은 %d자 이내여야 합니다.
Value for default option cannot be more than %d character(s).
5619구문이 잘못되었습니다. '%s' 옵션에는 값을 지정할 수 없습니다.
%s
Invalid syntax. Value cannot be specified with '%s' option.
%s
5620'%s' 옵션 값은 %d자 이내여야 합니다.
Value for '%s' option cannot be more than %d character(s).

EXIF

File Name:forfiles.exe.mui
Directory:%WINDIR%\WinSxS\amd64_microsoft-windows-forfiles.resources_31bf3856ad364e35_10.0.15063.0_ko-kr_bbfcc825d2b67c13\
File Size:11 kB
File Permissions:rw-rw-rw-
File Type:Win32 DLL
File Type Extension:dll
MIME Type:application/octet-stream
Machine Type:Intel 386 or later, and compatibles
Time Stamp:0000:00:00 00:00:00
PE Type:PE32
Linker Version:14.10
Code Size:0
Initialized Data Size:10752
Uninitialized Data Size:0
Entry Point:0x0000
OS Version:10.0
Image Version:10.0
Subsystem Version:6.0
Subsystem:Windows GUI
File Version Number:10.0.15063.0
Product Version Number:10.0.15063.0
File Flags Mask:0x003f
File Flags:(none)
File OS:Windows NT 32-bit
Object File Type:Executable application
File Subtype:0
Language Code:Korean
Character Set:Unicode
Company Name:Microsoft Corporation
File Description:ForFiles - Executes a command on selected files
File Version:10.0.15063.0 (WinBuild.160101.0800)
Internal Name:forfiles.exe
Legal Copyright:© Microsoft Corporation. All rights reserved.
Original File Name:forfiles.exe.mui
Product Name:Microsoft® Windows® Operating System
Product Version:10.0.15063.0
Directory:%WINDIR%\WinSxS\x86_microsoft-windows-forfiles.resources_31bf3856ad364e35_10.0.15063.0_ko-kr_5fde2ca21a590add\

What is forfiles.exe.mui?

forfiles.exe.mui is Multilingual User Interface resource file that contain Korean language for file forfiles.exe (ForFiles - Executes a command on selected files).

File version info

File Description:ForFiles - Executes a command on selected files
File Version:10.0.15063.0 (WinBuild.160101.0800)
Company Name:Microsoft Corporation
Internal Name:forfiles.exe
Legal Copyright:© Microsoft Corporation. All rights reserved.
Original Filename:forfiles.exe.mui
Product Name:Microsoft® Windows® Operating System
Product Version:10.0.15063.0
Translation:0x412, 1200