Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question

2 Answers

up vote 22 down vote accepted

You can insert arbitrary PowerShell script in a double quoted string by using a subexpression e.g. $() like so:

"C:\temp\mybackup $(get-date -f yyyy-MM-dd).zip"

And if you are getting the path from somewhere else - already as a string:

$dirName  = [io.path]::GetDirectoryName($path)
$filename = [io.path]::GetFileNameWithoutExtension($path)
$ext      = [io.path]::GetExtension($path)
$newPath  = "$dirName\$filename $(get-date -f yyyy-MM-dd)$ext"

And if the path happens to be coming from the output of Get-ChildItem:

Get-ChildItem *.zip | Foreach {
  "$($_.DirectoryName)\$($_.BaseName) $(get-date -f yyyy-MM-dd)$($_.extension)"}
share|improve this answer
2  
Argh. get-date -f yyyy-MM-dd made me stop for a moment before realizing that it's not the -f operator but the short form for the -Format parameter. It looked rather out of place, somehow :-) – Јοеу Dec 24 '09 at 0:11
Thanks Keith that was a great help – Chris Jones Dec 24 '09 at 11:43

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.

[string]$filePath = "C:\tempFile.zip";

[string]$directory = [System.IO.Path]::GetDirectoryName($filePath);
[string]$strippedFileName = [System.IO.Path]::GetFileNameWithoutExtension($filePath);
[string]$extension = [System.IO.Path]::GetExtension($filePath);
[string]$newFileName = $strippedFileName + [DateTime]::Now.ToString("yyyyMMdd-HHmmss") + $extension;
[string]$newFilePath = [System.IO.Path]::Combine($directory, $newFileName);

Move-Item -LiteralPath $filePath -Destination $newFilePath;
share|improve this answer
Thanks Tom, That was also a great help – Chris Jones Dec 24 '09 at 11:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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