Simple PowerShell LastWriteTime compare

前端 未结 7 872
我寻月下人不归
我寻月下人不归 2021-02-12 08:42

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 08:57

    Use

    ls | % {(get-date) - $_.LastWriteTime }

    It can work to retrieve the diff. You can replace ls with a single file.

提交回复
热议问题