Simple PowerShell LastWriteTime compare

前端 未结 7 2074
别那么骄傲
别那么骄傲 2021-02-12 08:31

I need a PowerShell script that can access a file\'s properties and discover the LastWriteTime property and compare it with the current date and return the date differe

7条回答
  •  没有蜡笔的小新
    2021-02-12 09:01

    Slightly easier - use the new-timespan cmdlet, which creates a time interval from the current time.

    ls | where-object {(new-timespan $_.LastWriteTime).days -ge 1}
    

    shows all files not written to today.

提交回复
热议问题