gpt4 book ai didi

Powershell命令删除子文件夹而不删除根目录

转载 作者:行者123 更新时间:2023-12-02 17:25:28 24 4
gpt4 key购买 nike

我在创建 PS 命令时遇到问题,该命令允许我删除多个子文件夹而不删除屋顶文件夹。

即:

C:\Test 有许多子文件夹:

  • C:\Test\Item1
  • C:\Test\Item2
  • C:\Test\Item3

文件夹 Item1、Item2 和 Item3 有许多子文件夹和文件。

我想创建一个 PS,允许我删除 Item1、Item2 和 Item3 内的所有空子文件夹,而不删除 Item1、Item2 和 Item3 文件夹。有可能任何 Item 文件夹都是空的,但我不想删除它们,只想删除每个文件夹的空内容。

这只是一个例子,我在 Test 中有大约 300 个 Item 文件夹。

我通常会使用这个:

$path="C:\TEST"

do {
$dir = gci $path -directory -recurse | Where { (gci $_.fullName).count -eq 0 } | select -expandproperty FullName

$dir | Foreach-Object { Remove-Item $_ }
} while ($dir.count -gt 0)

但是,如果文件夹根文件夹(Item1、Item2 或 Item3)为空,这会删除它们。

提前致谢。

最佳答案

您想要删除空子文件夹中的所有项目或常规中的所有项目吗?

这将删除目录“C:\abc\”内的所有文件夹或项目

$path = "C:\abc\"
Get-ChildItem -Path $path -Recurse| Foreach-object {Remove-item -Recurse -path $_.FullName }

这将删除其中没有任何项目的所有文件夹。

$path = "C:\abc\"
Get-ChildItem -Path $path -Recurse | Where-Object {(Get-ChildItem $_.FullName).Count -eq 0} |Foreach-object {Remove-item -Recurse -path $_.FullName }

´这将查看“C:\abc\”内部,获取所有子项并删除示例中子项内的所有空目录,这将是 Item1、Item2、...

$Path = "C:\abc\"
$itemFolders= Get-ChildItem -Path $Path
$itemFolders| Foreach-Object {
Get-ChildItem -Path $_.FullName |
Where-Object {(Get-ChildItem $_.FullName).Count -eq 0} |
Foreach-object {Remove-item -Recurse -path $_.FullName }
}

只是一些快速而肮脏的代码,因为我没有太多时间,希望我能有所帮助。

编辑:这是我想出的,它的性能不如我想要的那样,但它可以完成工作并且相当快,请亲自尝试一下,它对我有用 - 甚至还添加了一些评论和输出以澄清发生了什么。

$Path="C:\abc\"
$itemFolders = Get-ChildItem $Path
#Get All Folders inside
$AllFolders = $itemFolders | Get-ChildItem -Recurse | Where-Object {$_.PSIsContainer} | Select -Property FullName
#First delete all files older than 30 days
$itemFolders | Get-ChildItem -Recurse -File | ForEach-Object{
$limit = (Get-Date).AddDays(-30)
if($_.LastWriteTime -lt $limit)
{
"{0} hasn't been modified in the last 30 days deleting it" -f $_.FullName
Remove-Item -Path $_.FullName -Force -ErrorAction SilentlyContinue
}
}
#Check if there are files inside that are not containers
$AllFolders | ForEach-Object{
$files = Get-ChildItem -File -Recurse -Path $_.FullName
$directories = Get-ChildItem -Directory -Recurse -Path $_.FullName

#If There are any files inside the folder dont delete it.
if($files.Count -gt 0)
{
"Found {0} files inside {1} do not delete this" -f $files.Count, $_.FullName
}
#If There are no files and no directories inside delete it.
elseif($files.Count -eq 0 -and $directories.Count -eq 0)
{
"Empty Folder {0} deleting it" -f $_.FullName
Remove-Item -Path $_.FullName -Recurse -Force -ErrorAction SilentlyContinue
}
#If there are no files and empty directories inside delete it.
elseif($files.Count -eq 0 -and $directories.Count -gt 0)
{
"No Files but directories found in {0} since its recursive delete it" -f $_.FullName
Remove-Item -Path $_.FullName -Recurse -Force -ErrorAction SilentlyContinue
}
}

关于Powershell命令删除子文件夹而不删除根目录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42111297/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com