Powershell - 如何检查是否存在具有所需创建时间的文件?

时间:2012-05-03 14:20:15

标签: powershell powershell-v2.0

我正在使用此脚本

$date = Get-Date
Get-Childitem -name | where {$_.CreationTime -eq "$date"}

但它不起作用。我需要的是做一个布尔检查,如果在特定日期创建了一个文件。谢谢。

2 个答案:

答案 0 :(得分:6)

Get-Date获取当前日期和时间。如果您将文件的创建日期与当前日期时间进行比较,您将找不到任何文件(除了您在检索当前日期时刚创建了一个文件;))。

$today = (get-date).Date
Get-ChildItem | where { $_.CreationTime.Date -eq $today }

答案 1 :(得分:0)

Get-ChildItem | where-object { $_.CreationTime.Date -match "2014" }

其中2014是创作年份。