我想获取保存在文件夹中的文件的创建日期,这些文件是在上个月移动/创建的。所以现在我想检查上个月有多少文件。
谢谢
答案 0 :(得分:1)
如果您在Windows下尝试使用Powershell,它将为您节省大量时间。
$path = "c:\foo"
$files = Get-ChildItem $path -File -recurse | Where-Object { $_.CreationTime -lt (get-date).adddays(-30) }
Write-Host $files.Count