4
我使用這個腳本Powershell - 如何檢查具有所需創建時間的文件是否存在?
$date = Get-Date
Get-Childitem -name | where {$_.CreationTime -eq "$date"}
,但它不工作。我需要的只是在特定日期創建文件時進行布爾檢查。謝謝。
我使用這個腳本Powershell - 如何檢查具有所需創建時間的文件是否存在?
$date = Get-Date
Get-Childitem -name | where {$_.CreationTime -eq "$date"}
,但它不工作。我需要的只是在特定日期創建文件時進行布爾檢查。謝謝。
Get-Date
獲取當前日期和時間。如果將文件的創建日期與當前日期和比較,則不會找到任何文件(除非您在檢索當前日期時創建了一個文件;))。
$today = (get-date).Date
Get-ChildItem | where { $_.CreationTime.Date -eq $today }
Get-ChildItem | where-object { $_.CreationTime.Date -match "2014" }
其中2014
是創造的一年。
完美!謝謝。 – culter