I have a path in a string
"C:\temp\mybackup.zip"
I would like instert a timestamp in that script eg
"C:\temp\mybackup 2009-12-23.zip"
It there an easy way to do this in PowerShell.
|
I have a path in a string "C:\temp\mybackup.zip" I would like instert a timestamp in that script eg "C:\temp\mybackup 2009-12-23.zip" It there an easy way to do this in PowerShell. |
|||
|
|
|
You can insert arbitrary PowerShell script in a double quoted string by using a subexpression e.g. $() like so:
And if you are getting the path from somewhere else - already as a string:
And if the path happens to be coming from the output of Get-ChildItem:
|
|||||||
|
|
Here's some PS code that should work. You can combine most of this onto fewer lines, but I wanted to keep it clear and readable.
|
|||
|
|