Powershell命令/脚本根据修改的日期时间查找所有文档?

时间:2016-05-02 04:37:24

标签: windows powershell directory command

我不熟悉powershell,我知道dir命令,您可以根据修改日期(forfiles /P directory /S /D +08/01/2013)查找文档。

但是在powershell中,是否有命令获取具有指定修改日期的所有文档?让我们说列出所有修改日期的文件(02/05/2016)

我希望你能帮我解决这个问题。非常感谢你的关注。

1 个答案:

答案 0 :(得分:0)

使用Get-ChildItem cmdlet检索所有文件(如果需要,请-Recurse)。并使用Where-Object cmdlet根据您所需的属性对其进行过滤:

Get-ChildItem -Path "your_directory" -Recurse  | where {$_.LastWriteTime.Date -eq ([datetime]::Parse('02/05/2016'))}