84

在 Powershell 中,如何测试目录是否为空?

4

16 回答 16

74

如果您对隐藏文件或系统文件不感兴趣,您也可以使用 Test-Path

要查看它是否存在目录中的文件,.\temp您可以使用:

Test-Path -Path .\temp\*

或很快:

Test-Path .\temp\*
于 2012-05-11T11:42:05.693 回答
64

尝试这个...

$directoryInfo = Get-ChildItem C:\temp | Measure-Object
$directoryInfo.count #Returns the count of all of the objects in the directory

如果$directoryInfo.count -eq 0,则您的目录为空。

于 2012-05-11T12:51:12.543 回答
22

为了防止枚举 c:\Temp 下的每个文件(这可能很耗时),我们可以这样做:

if((Get-ChildItem c:\temp\ -force | Select-Object -First 1 | Measure-Object).Count -eq 0)
{
   # folder is empty
}
于 2014-12-22T12:12:29.117 回答
5
filter Test-DirectoryEmpty {
    [bool](Get-ChildItem $_\* -Force)
}
于 2012-05-11T11:49:15.300 回答
3

一条线:

if( (Get-ChildItem C:\temp | Measure-Object).Count -eq 0)
{
    #Folder Empty
}
于 2014-08-26T14:19:05.583 回答
2

简单的方法

if (-Not (Test-Path .\temp*) 
{
 #do your stuff here
} 

-Not如果你想在文件存在时输入'if',你可以删除

于 2017-06-29T01:59:48.160 回答
2

您可以使用该方法.GetFileSystemInfos().Count检查目录的数量。微软文档

$docs = Get-ChildItem -Path .\Documents\Test
$docs.GetFileSystemInfos().Count
于 2020-05-23T12:55:33.307 回答
1

只需添加到 JPBlanc,如果目录路径是 $DirPath,此代码也适用于包括方括号字符的路径。

    # Make square bracket non-wild card char with back ticks
    $DirPathDirty = $DirPath.Replace('[', '`[')
    $DirPathDirty = $DirPathDirty.Replace(']', '`]')

    if (Test-Path -Path "$DirPathDirty\*") {
            # Code for directory not empty
    }
    else {
            # Code for empty directory
    }
于 2012-12-31T18:29:00.753 回答
1

获取所有文件和目录并仅计算它们以确定目录是否为空是一种浪费。更好地使用 .NETEnumerateFileSystemInfos

$directory = Get-Item -Path "c:\temp"
if (!($directory.EnumerateFileSystemInfos() | select -First 1))
{
    "empty"
}
于 2015-05-30T13:02:13.053 回答
1
    $contents = Get-ChildItem -Path "C:\New folder"
    if($contents.length -eq "") #If the folder is empty, Get-ChileItem returns empty string
    {
        Remove-Item "C:\New folder"
        echo "Empty folder. Deleted folder"
    }
    else{
    echo "Folder not empty"
    }
于 2018-01-30T04:48:41.250 回答
1

删除空文件夹的示例:

IF ((Get-ChildItem "$env:SystemDrive\test" | Measure-Object).Count -eq 0) {
    remove-Item "$env:SystemDrive\test" -force
}
于 2017-07-05T16:24:07.953 回答
1
#Define Folder Path to assess and delete
$Folder = "C:\Temp\Stuff"

#Delete All Empty Subfolders in a Parent Folder
Get-ChildItem -Path $Folder -Recurse -Force | Where-Object { $_.PSIsContainer -and (Get-ChildItem -Path $_.FullName -Recurse -Force | Where-Object { !$_.PSIsContainer }) -eq $null } | Remove-Item -Force -Recurse

#Delete Parent Folder if empty
If((Get-ChildItem -Path $Folder -force | Select-Object -First 1 | Measure-Object).Count -eq 0) {Remove-Item -Path $CATSFolder -Force -Recurse}
于 2018-03-22T22:46:24.503 回答
1
#################################################
# Script to verify if any files exist in the Monitor Folder
# Author Vikas Sukhija 
# Co-Authored Greg Rojas
# Date 6/23/16
#################################################


################Define Variables############ 
$email1 = "yourdistrolist@conoso.com" 
$fromadd = "yourMonitoringEmail@conoso.com" 
$smtpserver ="mailrelay.conoso.com" 

$date1 = get-date -Hour 1 -Minute 1 -Second 1
$date2 = get-date -Hour 2 -Minute 2 -Second 2 

###############that needs folder monitoring############################ 


$directory = "C:\Monitor Folder"

$directoryInfo = Get-ChildItem $directory | Measure-Object
$directoryInfo.count


if($directoryInfo.Count -gt '0') 
{ 

#SMTP Relay address 
$msg = new-object Net.Mail.MailMessage
$smtp = new-object Net.Mail.SmtpClient($smtpServer) 

#Mail sender 
$msg.From = $fromadd 
#mail recipient 
$msg.To.Add($email1) 
$msg.Subject = "WARNING : There are " + $directoryInfo.count + " file(s) on " + $env:computername +  " in " + " $directory 
$msg.Body = "On " + $env:computername + " files have been discovered in the " + $directory + " folder."
$smtp.Send($msg) 

} 

Else
      { 
    Write-host "No files here" -foregroundcolor Green 
      } 
于 2016-06-23T17:08:55.170 回答
0

用于管道的一条线,也使用GetFileSystemInfos().Countwith a test :

gci -Directory | where { !@( $_.GetFileSystemInfos().Count) } 

将显示所有没有项目的目录。结果:

Directory: F:\Backup\Moving\Test

Mode                 LastWriteTime         Length Name
----                 -------------         ------ ----
d-----         5/21/2021   2:53 PM                Test [Remove]
d-----         5/21/2021   2:53 PM                Test - 1   
d-----         5/21/2021   2:39 PM                MyDir [abc]
d-----         5/21/2021   2:35 PM                Empty

我发布这个是因为我遇到了包含括号的名称的极端问题[ ];失败是在使用其他方法时,输出管道Remove-Item错过了带括号的目录名称。

于 2021-05-21T21:55:58.917 回答
0

从 Get-ChildItem 获取计数可能会提供错误结果,因为空文件夹或访问文件夹时出错可能导致计数为 0。

我检查空文件夹的方法是分离出错误:

Try { # Test if folder can be scanned
   $TestPath = Get-ChildItem $Path -ErrorAction SilentlyContinue -ErrorVariable MsgErrTest -Force | Select-Object -First 1
}
Catch {}
If ($MsgErrTest) { "Error accessing folder" }
Else { # Folder can be accessed or is empty
   "Folder can be accessed"
   If ([string]::IsNullOrEmpty($TestPath)) { # Folder is empty
   "   Folder is empty"
   }
}

上面的代码首先尝试访问该文件夹。如果发生错误,则输出发生错误。如果没有错误,说明“文件夹可以访问”,然后检查它是否为空。

于 2019-06-28T18:01:21.373 回答
0

在查看了一些现有的答案并进行了一些试验后,我最终使用了这种方法:

function Test-Dir-Valid-Empty {
    param([string]$dir)
    (Test-Path ($dir)) -AND ((Get-ChildItem -att d,h,a $dir).count -eq 0)
}

这将首先检查有效目录( Test-Path ($dir))。然后它将检查任何内容,包括任何目录、隐藏文件或“常规”文件**,分别由于属性dha

用法应该足够清楚:

PS C_\> Test-Dir-Valid-Empty projects\some-folder
False 

...或者:

PS C:\> if(Test-Dir-Valid-Empty projects\some-folder){ "empty!" } else { "Not Empty." }
Not Empty.

**实际上,我不是 100% 确定a这里定义的效果是什么,但无论如何它确实会导致所有文件都被包含在内。文档说明ah显示隐藏文件,我认为as应该显示系统文件,所以我猜测a它自己只是显示“常规”文件。如果你从上面的函数中删除它,它无论如何都会找到隐藏文件,但不会找到其他文件。

于 2019-10-08T08:38:28.460 回答