I've got a bunch of files named

attachment.023940
attachment.024039
attachment.024041
attachment.024103

etc...

I need to rename the files by incrementing the filenumber by a given number. (So that they match the right ID in a database)

I guess I could write a C# application that uses RegEx to parse the filename, but I assume this is a task that could be accomplished in PowerShell as well?

I've found several other threads on SO about using PowerShell to rename files, but none of them handled incrementing a filenumber.

I'm on Win7, so PowerShell 2.0 is available.

link|improve this question

feedback

4 Answers

up vote 2 down vote accepted

The following approach happens to work because the number is in the Extension part of the filename.

Get-ChildItem attachment.* | Sort Extension -desc | 
  Rename-Item -NewName {$_.basename + 
                        ".{0:D6}" -f ([int]$_.extension.substring(1) + 1)}

This takes advantage of piping into Rename-Item and using scriptblocks with other pipeline bindable parameters like NewName.

link|improve this answer
feedback

Something like this?

$file = Get-ChildItem attachment.012345
$file.basename + ".0" + ([int]::parse([regex]::split($file.extension,"\D")) + 123).tostring()


    PS > attachment.012468
link|improve this answer
feedback

Assuming your filenumbers are all 6 digits, and need to retain the leading zeros:

$increment = 1
gci attachment.$("[0-9]"*6) | sort -descending |% {
$newext = $increment + $_.name.split(".")[1]
rename-item $_.fullname -newname ('attachment.' + "{0:D6}" -f $newext)
} 
link|improve this answer
feedback

Get-ChildItem attachment.* | Move-Item -Destination { "attachment.{0}" -f (([int]($_.Name -replace '.*.(\d+)','$1')) + $increment) }

link|improve this answer
1  
If you don't sort the names first you may wind up writing over say file 41 with file 40 before you've had a chance to rename 41 to 42. – Keith Hill Jan 18 '11 at 20:25
Actually, Move-Item & Rename-Item won't overwrite, but you're right, it would be better to sort first. – Jaykul Jan 19 '11 at 22:01
feedback

Your Answer

 
or
required, but never shown

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