vote up 2 vote down star

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 difference.

I have something like this...

$writedate = Get-ItemProperty -Path $source -Name lastwritetime

...but I can not cast the lastwritetime to a "DateTime" datatype. It says, "Cannot concert "@{lastwritetime=...date...}" to "System.DateTime".

Any help would be highly appreciated!

Thanks to everyone in advance.

flag

2 Answers

vote up 3 vote down check

Try the following.

$d = [datetime](Get-ItemProperty -Path $source -Name LastWriteTime).lastwritetime

This is part of the item property weirdness. When you run Get-ItemProperty it does not return the value but instead the property. You have to use one more level of indirection to get to the value.

link|flag
That works! Thanks! – Steven Rogers Jun 19 at 17:07
vote up 1 vote down

ls | % {(get-date) - $_.LastWriteTime }
Can works, to retrieve the diff, you can replace ls with a single file.

link|flag
The diff works! thanks! – Steven Rogers Jun 19 at 17:08

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.