2011-12-19 2 views

답변

1
Get-ChildItem -Recurse | ? { $_.lastaccesstime -ge [datetime]"12/18/11"} | select fullname 

이렇게하면 lastaccesstime 속성이 1820 년 12 월 18 일 이상인 파일 목록을 제공합니다. 단일 날짜 범위를 지정해야하는 이유

Get-ChildItem -Recurse | ? { $_.lastaccesstime -ge [datetime]"12/01/11" -and $_.lastaccesstime -lt [datetime]"12/02/11"} | select fullname 

이 오후 11시 59분

lastaccesstime에 오전 12시에서 01 2011 날짜 12 월 lastaccesstime 모든 파일을주고는 날짜와 시간에 대한 완전한 참조입니다, 그건 시합.

+0

대단히 감사합니다 – natoza

+0

당신을 환영합니다! Stackoveflow에서 멋진 영속성을 얻으십시오 –

+0

날짜 만 확인하려면 ['Date']에 대한 평등을 확인할 수도 있습니다 (http://msdn.microsoft.com/en-us/library/system.datetime.date.aspx) 값 ([LastAccessTime]) (http://msdn.microsoft.com/en-us/library/system.io.filesysteminfo.lastaccesstime.aspx) :'Get-ChildItem -Recurse | where {$ _. LastAccessTime.Date -eq '2011-12-01'}' –