[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖
for %%a in (a.txt) do echo %%~za
显示a.txt的大小。
  1. %~I         - expands %I removing any surrounding quotes (")
  2. %~fI        - expands %I to a fully qualified path name
  3. %~dI        - expands %I to a drive letter only
  4. %~pI        - expands %I to a path only
  5. %~nI        - expands %I to a file name only
  6. %~xI        - expands %I to a file extension only
  7. %~sI        - expanded path contains short names only
  8. %~aI        - expands %I to file attributes of file
  9. %~tI        - expands %I to date/time of file
  10. %~zI        - expands %I to size of file
  11. %~$PATH:I   - searches the directories listed in the PATH
  12.                environment variable and expands %I to the
  13.                fully qualified name of the first one found.
  14.                If the environment variable name is not
  15.                defined or the file is not found by the
  16.                search, then this modifier expands to the
  17.                empty string
复制代码
心绪平和,眼藏静谧。

TOP

if/?
  1. where compare-op may be one of:
  2.     EQU - equal
  3.     NEQ - not equal
  4.     LSS - less than
  5.     LEQ - less than or equal
  6.     GTR - greater than
  7.     GEQ - greater than or equal
复制代码
心绪平和,眼藏静谧。

TOP

返回列表