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.

With PowerShell (although other suggestions are welcome), how does one recursively loop a directory/folder and

  1. replace text A with B in all files,
  2. rename all files so that A is replaced by B, and last
  3. rename all folders also so that A is replaced by B?
share|improve this question
So you want one command/function that will replace A with B in file contents, file names, and folder names or are A and B separate in each of those cases? – Scott Warren Apr 13 '11 at 14:25
"one command/function that will replace A with B in file contents, file names, and folder names" is the case. – Martin R-L Apr 13 '11 at 18:53

4 Answers

up vote 3 down vote accepted

With a few requirements refinements, I ended up with this script:

$match = "MyAssembly" 
$replacement = Read-Host "Please enter a solution name"

$files = Get-ChildItem $(get-location) -filter *MyAssembly* -Recurse

$files |
    Sort-Object -Descending -Property { $_.FullName } |
    Rename-Item -newname { $_.name -replace $match, $replacement } -force



$files = Get-ChildItem $(get-location) -include *.cs, *.csproj, *.sln -Recurse 

foreach($file in $files) 
{ 
    ((Get-Content $file.fullname) -creplace $match, $replacement) | set-content $file.fullname 
}

read-host -prompt "Done! Press any key to close."
share|improve this answer
1  
This is awesome. When people realize what this script will allow you to do, you'll get a lot more upvotes... thanks. – Noah Heldman Sep 6 '12 at 21:22

I would go with something like this:

Get-ChildItem $directory -Recurse |
    Sort-Object -Descending -Property { $_.FullName } |
    ForEach-Object {
        if (!$_.PsIsContainer) {
            ($_|Get-Content) -replace 'A', 'B' | Set-Content $_.FullName
        }
        $_
    } |
    Rename-Item { $_.name -replace 'A', 'B' }

The Sort-Object is there to ensure that first children (subdirs, files) are listed and then directories after them. (12345)

share|improve this answer
It doesn't work. – Martin R-L Apr 27 '11 at 10:15
And the question is: why? :) As somebody 'around computers' you might know, that "It doesn't work" is as worthy as if you say nothing. Error message is helpful. Otherwise, no need to say "It doesn't work". :) – stej Apr 27 '11 at 10:58

Untested, but should give you a starting point:

$a = 'A';
$b = 'B';
$all = ls -recurse;
$files = = $all | where{ !$_.PSIsContainer );
$files | %{ 
   $c = ( $_ | get-itemcontent -replace $a,$b ); 
   $c | out-file $_;
}
$all | rename-item -newname ( $_.Name -replace $a,$b );
share|improve this answer
1  
I can tell that is untested, there is no way that would run. :) – JasonMArcher Apr 13 '11 at 16:12

Untested, may be I'm more lucky ;-)

$hello = 'hello'
$world = 'world'

$files = ls -recurse | ? {-not $_.PSIsContainer} 

foearch ($file in $files) {
  gc -path $file | % {$_ -replace $hello, $world} | Set-Content $file
  ri -newname ($file.name -replace $hello, $world)
}

ls -recurse | ? {$_.PSIsContainer} | ri -newname ($_.name -replace $hello, $world)

To use the same recursion:

$hello = 'hello'
$world = 'world'

$everything = ls -recurse 

foearch ($thing in $everything) {
  if ($thing.PSIsContainer -ne $true) {
     gc -path $thing | % {$_ -replace $hello, $world} | Set-Content $thing
  }
  ri -newname ($thing.name -replace $hello, $world)
}
share|improve this answer
It's little complex, so I would test it as a script. – empo Apr 13 '11 at 19:35

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.