获取forfiles的最后访问日期

时间:2018-09-05 09:23:12

标签: batch-file forfiles

在获取forfiles命令时,我需要一些帮助:

forfiles /S /M "*.exe" /C "cmd /C echo @Path @ISDIR @Fdate @Ftime @Fsize" >> Output.txt

2 个答案:

答案 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过滤器为方便起见。