forfiles.exe ForFiles - 在所选文件上执行命令 dbe261d813adc68d3e269a3df98fa12a

File info

File name: forfiles.exe.mui
Size: 9216 byte
MD5: dbe261d813adc68d3e269a3df98fa12a
SHA1: 7b70d0344bb791beaafeec31f7d1c66e1e7e8579
SHA256: 8aceff28dea493ecc7d7a18e60274ca9d8939ae09e133ac5f20654cad9ea9bfc
Operating systems: Windows 10
Extension: MUI
In x64: forfiles.exe ForFiles - 在所选文件上执行命令 (32 位)

Translations messages and strings

If an error occurred or the following message in Chinese (Simplified) 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 Chinese (Simplified) English
151键入 "FORFILES /?" 了解用法信息。
Type "FORFILES /?" for usage.
152无效语法。
Invalid syntax.
154指定的日期无效。
Invalid date specified.
155用指定的搜索标准没有找到文件。
No files found with the specified search criteria.
161这个类型的文件 Files of type
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 路径(\\machine\share)不受支持。
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
211/M searchmask 根据搜索掩码搜索文件。默认搜索掩码是 '*'。
/M searchmask Searches files according to a searchmask.
213/S 指导 forfiles 递归到子目录。像 "DIR /S"。

/S Instructs forfiles to recurse into
215/C command 表示为每个文件执行的命令。命令字符串应该
/C command Indicates the command to execute for each file.
216用双引号括起来。

Command strings should be wrapped in double
218默认命令是 "cmd /c echo @file"。下列变量
The default command is "cmd /c echo @file".

219可以用在命令字符串中:
The following variables can be used in the
221@file - 返回文件名。
@file - returns the name of the file.
222@fname - 返回不带扩展名的文件名。
@fname - returns the file name without
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
237要在命令行包括特殊字符,字符请以 0xHH
To include special characters in the command
238形式使用十六进制代码(例如,0x09 为 tab)。
line, use the hexadecimal code for the character
240内部 CMD.exe 命令前面应以 "cmd /c" 开始。

CMD.exe commands should be preceded with
242/D date 选择文件,其上一次修改日期大于或等于 (+),
/D date Selects files with a last modified date greater
243或者小于或等于 (-) 用 "%s" 格式指定的日期;
than or equal to (+), or less than or equal to
245或选择文件,其上一次修改日期大于或等于 (+)
"%s" format; or selects files with a
246当前日期加 "dd" 天,或者小于或等于 (-) 当前
last modified date greater than or equal to (+)
248日期减 "dd" 天。有效的 "dd" 天数可以是
equal to (-) the current date minus "dd" days. A
2490 - 32768 范围内的任何数字。如果没有指定,
valid "dd" number of days can be any number in
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 在 30 前就被更改。"
/C "cmd /c echo @path 0x09 was changed 30 days ago"
261FORFILES /D %s
FORFILES /D %s
262/C "cmd /c echo @fname 在 2001年1月1日就是新的。"
/C "cmd /c echo @fname is new since Jan 1st 2001"
263FORFILES /D +%s /C "cmd /c echo @fname 今天是新的。"
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_zh-cn_49490da80a218faf\
File Size:9.0 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:8704
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:Chinese (Simplified)
Character Set:Unicode
Company Name:Microsoft Corporation
File Description:ForFiles - 在所选文件上执行命令
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_zh-cn_ed2a722451c41e79\

What is forfiles.exe.mui?

forfiles.exe.mui is Multilingual User Interface resource file that contain Chinese (Simplified) language for file forfiles.exe (ForFiles - 在所选文件上执行命令).

File version info

File Description:ForFiles - 在所选文件上执行命令
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:0x804, 1200