在获取forfiles命令时,我需要一些帮助:
forfiles /S /M "*.exe" /C "cmd /C echo @Path @ISDIR @Fdate @Ftime @Fsize" >> Output.txt
答案 0 :(得分:0)
上次访问日期不是FORFILES
产生的日期。可以使用PowerShell在.bat文件脚本中完成。
powershell -NoProfile -Command ^
"Get-ChildItem -Recurse -File -Filter '*.exe' |" ^
"ForEach-Object {'""{0}""" {1} {2} {3}' -f @($_.FullName, $_.PSIsContainer, $_.LastAccessTime, $_.Length) }"
输出:
"C:\src\t\renexe\bar.exe" False 2018-02-16 02:19:51 6
"C:\src\t\renexe\baz.exe" False 2018-02-16 02:19:51 6
"C:\src\t\renexe\foo.exe" False 2018-02-16 02:19:51 6
答案 1 :(得分:0)
您可以使用dir
命令来帮助您,
forfiles /M *.xml /C "cmd /c dir /ta @file | findstr /R ^\d"
其中的findstr
过滤器为方便起见。