使用 PowerShell 5 或 > 删除路径为 50 个中的任意一个的目录/子目录

使用 PowerShell 5 或 > 删除路径为 50 个中的任意一个的目录/子目录

Windows 10 64 位。PowerShell 5.1

当路径可以是 50 个中的任何一个时,使用 PowerShell 5 或 > 删除目录/子目录。

删除livebolivar.com及其子目录any of 50 folders named mmddyy

"%USERPROFILE%\desktop\websites\"any of 50 folders named mmddyy"\livebolivar.com"

删除 %USERPROFILE%\desktop\websites\011920\livebolivar.com

发现太多:

gci %USERPROFILE%\desktop\websites -recurse | Where-Object {($_.PSIsContainer)} | Foreach { if ( $_.Name -eq "livebolivar.com") {remove-item $_.fullname -confirm}} 

不工作:

gci -exclude favorites %USERPROFILE%\desktop\websites -recurse | Where-Object {($_.PSIsContainer)} | Foreach { if ( $_.Name -eq "livebolivar.com") {remove-item $_.fullname -confirm}} 

这将删除子文件夹:

$path= @("%USERPROFILE%\desktop\websites\*\livebolivar.com")
$folders= gci -path $path -Recurse | Where-Object {$_.PsIsContainer} |Group-Object {$_.FullName.Split('_')[0] }
ForEach($folder in $folders){
$folder.Group | % { Remove-Item $_.fullname -recurse -force}} 

制作测试文件夹:

pushd %USERPROFILE%\Desktop
foreach($i in -10..-1){
$z=(Get-Date).AddDays($i).tostring("MMddyy")
ni -itemtype directory $z\livebolivar.com\New Folder > $null}
ni -itemtype file $z\livebolivar.com\New Folder\test.txt > $null}
popd 
exit 

递归目录 递归删除目录 使用 remove-item 删除目录和子目录 使用 ri 删除目录和子目录

答案1

Windows 10 64 位。PowerShell 5.1

使用通配符递归删除目录。

gci $env:USERPROFILE\desktop\websites\*\livebolivar.com | % {ri $_.fullname -recurse -force -whatif}

% 对输入对象集合中的每个项目执行操作。

$_ 代表来自管道的当前项目。

.fullname 是 path\name.ext

没有子目录?-force不需要

gci $env:USERPROFILE\desktop\websites\*\livebolivar.com | % {ri $_.fullname -recurse -whatif} 

相关内容