Im making a script to rename files in a folder using a preprovided prefix combined with an incrimental 6 digit value which when concatenated with the prefix gives the document title.

I need the script to iterate through the file list from a provided folder and alter each file name with the prefix incrimenting the incrimental number each time with the initial provided number being the first incriment.

I am close but i have been having some errors and im not sure where im going wrong. please advise.

Write-host "Please enter prefix:"
[String]$strPrefix = read-host

Write-host "Please enter incrimental value:"
[int]$intInc = read-host

Write-host "Please enter Files folder:"
[String]$strFiles =  "C:\scripts\files"
#$items = Get-ChildItem -Path $strFiles
$items = $strFiles

$intInc

#for each file in $strFiles
foreach ($file in $items )
{
    $newName = $strPrefix + ('0' * (6 - $intInc.ToSTring().Length)) + ($intInc++).ToString()

    if ($extOnly.length -eq 0) 
    {
        Rename-Item New-Name{$file -replace  '$newName'}
    }
    else 
    {
        Write-host "NewName $newName$extOnly"

        Rename-Item New-Name{$file -replace '$newName$extOnly'}
    } #end else

    $file

}#end for

I think im close but something is just making it fall over

link|improve this question

Can you post the errors? what represent $extOnly variable? $items = $strFiles don't make sense! – Christian Aug 12 '11 at 13:20
Is #$items = Get-ChildItem -Path $strFiles supposed to be commented out? Why are you assigning $items to a string on the next line? A foreach on the string will only loop once. – Rynant Aug 12 '11 at 13:38
Note that you can get rid if the Write-Host "Please enter prefix:" since you can pass a prompt to Read-Host e.g. $strPrefix = Read-Host -Prompt "Please enter prefix" – Keith Hill Aug 12 '11 at 22:32
feedback

1 Answer

up vote 0 down vote accepted
Write-host "Please enter prefix:"
[String]$strPrefix = read-host

Write-host "Please enter incrimental value:"
[int]$intInc = read-host

Write-host "Please enter Files folder:"
[String]$strFiles =  "C:\temp\files"

$files = get-childitem $strFiles -recurse

ForEach ($file in $files) {
$intIncPadded = "{0:D6}" -f $intInc
$newName = "$strPrefix$intIncPadded" + $file.Extension
Rename-Item $file.FullName $newName 
$intInc = $intInc + 1
}
link|improve this answer
rite-host "Please enter Files folder:" [String]$strFiles = "C:\temp\files" - Shouldn't there be a Read-Host in there? – EBGreen Aug 12 '11 at 14:40
thanks, I added the padding and readhost for the scripts folder myself but this way looks a little allot more tidy. thanks – Craig Hendley Aug 12 '11 at 14:42
You're welcome... any chance of marking this as the answer? :) – nimizen Aug 12 '11 at 14:49
how do i do that? – Craig Hendley Aug 12 '11 at 16:50
@Craig - meta.stackoverflow.com/questions/5234/… – Rynant Aug 13 '11 at 12:57
feedback

Your Answer

 
or
required, but never shown

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