Question:
I would like to change the creation date of the files that I generate with this script :
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
$clientname = Read-Host "Enter the client name" $path = Read-Host "Enter the complete path of .bak files" $time = "01-00-00" $space = " " for ($i = 0; $i -lt 7;$i++) { $date = (Get-Date).AddDays(-1-$i).ToString('yyyy-MM-dd') New-Item -ItemType file $path$clientname$space$date$space$time.bak } |
So it gives me theses files :
1 2 3 4 5 6 7 8 9 10 |
Mode LastWriteTime Length Name ---- ------------- ------ ---- -a--- 16/08/2013 16:55 0 client 2013-08-15 01-00-00.bak -a--- 16/08/2013 16:55 0 client 2013-08-14 01-00-00.bak -a--- 16/08/2013 16:55 0 client 2013-08-13 01-00-00.bak -a--- 16/08/2013 16:55 0 client 2013-08-12 01-00-00.bak -a--- 16/08/2013 16:55 0 client 2013-08-11 01-00-00.bak -a--- 16/08/2013 16:55 0 client 2013-08-10 01-00-00.bak -a--- 16/08/2013 16:55 0 client 2013-08-09 01-00-00.bak |
I want to modify the LastWriteTime property of each files, I want it to be the same as the date in the file name.
Example for this file "client 2013-08-15 01-00-00.bak"
the LastWriteTime will be "15/08/2013 01:00"
I’m stuck and I do not how can we do that
Thank you
Answer:
Not tested, but try this in your loop after you call New-Item:
1 2 3 |
$file = Get-ChildItem $path$clientname$space$date$space$time.bak $file.LastWriteTime = (Get-Date).AddDays(-1-$i) |
If you want to see a full listing of things you can do with FileInfo objects, try calling $file | gm
in your powershell console. You could also view the docs on MSDN.