简体   繁体   中英

Powershell, Get-ChildItem from today only

What's the best way to grab files from today only in Powershell? I have this:

$file_list = gci $foldern | where {([datetime]::now - $_.lastwritetime).TotalHours -lt 24};

But it grabs files from the last 24 hours, and not quite "today".

为什么不只检查日期?

$file_list = gci $foldern | where {([datetime]::now.Date -eq $_.lastwritetime.Date)};

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM