Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
2.0k views
in Technique[技术] by (71.8m points)

powershell - Delete all files and folders but exclude a subfolder

I have a folder where I need to delete all files and folders except a small list of files and folders.

I can already exclude a list of files, but don't see a way to exclude a folder and its contents.

Here is the folder structure:

|-C:emp
 -C:empsomefile.txt
 -C:empsomeotherfile.txt
| |-C:empfoldertodelete
   -C:empfoldertodeletefile1.txt
| |-C:empfoldertokeep
|  -C:empfoldertokeepfile2.txt

I want to keep somefile.txt and the folder foldertokeep and its content.

This is what I have right now:

Get-ChildItem -Path  'C:emp' -Recurse -exclude somefile.txt | Remove-Item -force -recurse

This really does not delete somefile.txt. Is there a way to exclude folder foldertokeep and its content from the delete list?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Get-ChildItem -Path  'C:emp' -Recurse -exclude somefile.txt |
Select -ExpandProperty FullName |
Where {$_ -notlike 'C:empfoldertokeep*'} |
sort length -Descending |
Remove-Item -force 

The -recurse switch does not work properly on Remove-Item (it will try to delete folders before all the child items in the folder have been deleted). Sorting the fullnames in descending order by length insures than no folder is deleted before all the child items in the folder have been deleted.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...