用于Windows的批处理脚本设置变量值

时间:2015-06-17 05:52:06

标签: batch-file

此部分脚本未设置变量creationYear的值。

set creationYear=dir/T:C %%i | cut -c 7-10

echo %creationYear%

显示ECHO已关闭,开始时有@ECHO OFF

1 个答案:

答案 0 :(得分:0)

for /f "tokens=* delims=" %%# in ('dir/T:C %%i ^| cut -c 7-10') do (
 set "creationYear=%%#" 
)
echo %creationYear%

尽管您可以在没有cut

等外部工具的情况下获得创建日期