Simple PowerShell LastWriteTime compare

前端 未结 7 1965
别那么骄傲
别那么骄傲 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:04

    (Get-Item $source).LastWriteTime is my preferred way to do it.

提交回复
热议问题