Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I can delete files with specific extensions in multiple folders with this:

Get-childitem * -include *.scc -recurse | remove-item

But I also need to delete folders with a specific name - in particular those that subversion creates (".svn" or "_svn") when you pull down files from a subversion repo.

share|improve this question

2 Answers

up vote 6 down vote accepted

This one should do it:

get-childitem -Include .svn -Recurse -force | Remove-Item -Force –Recurse

Other version:

$fso = New-Object -com "Scripting.FileSystemObject"
$folder = $fso.GetFolder("C:\Test\")

foreach ($subfolder in $folder.SubFolders)
{
    If ($subfolder.Name -like "*.svn")
    {
        remove-item $subfolder.Path -Verbose
    }       
}
share|improve this answer
perfect - thanks! – Tone Sep 6 '10 at 3:06
One-liner works great. – Jason V May 20 '11 at 19:44

I tend to avoid the -Include parameter on Get-ChildItem it is slower than -Filter. This is what I would use:

get-childitem . -include .svn,_svn -recurse -force | remove-item -recurse -force

or if typing this at the prompt:

ls . -inc .svn,_svn -r -fo | ri -r -fo
share|improve this answer
Typo in the this one. It also doesn't appear to work. – Jason V May 20 '11 at 19:43
Not a typo but the wildcard character ? wasn't working as I expected. It should have matched both _ and . but it wasn't matching the .. Go figure. – Keith Hill May 21 '11 at 15:39
I'm confused @Keith. You said you avoid -include, but that's what you used. – Mike Shepard Apr 18 at 21:21
I said I "tend" to avoid -include for the reason stated above. However, if you need to filter based on several different wildcard specs, -filter won't handle that. So using -include should be no slower than piping through Where-Object to filter on the filename. – Keith Hill Apr 18 at 22:06

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.