在 Powershell 中,如何测试目录是否为空?
16 回答
如果您对隐藏文件或系统文件不感兴趣,您也可以使用 Test-Path
要查看它是否存在目录中的文件,.\temp
您可以使用:
Test-Path -Path .\temp\*
或很快:
Test-Path .\temp\*
尝试这个...
$directoryInfo = Get-ChildItem C:\temp | Measure-Object
$directoryInfo.count #Returns the count of all of the objects in the directory
如果$directoryInfo.count -eq 0
,则您的目录为空。
为了防止枚举 c:\Temp 下的每个文件(这可能很耗时),我们可以这样做:
if((Get-ChildItem c:\temp\ -force | Select-Object -First 1 | Measure-Object).Count -eq 0)
{
# folder is empty
}
filter Test-DirectoryEmpty {
[bool](Get-ChildItem $_\* -Force)
}
一条线:
if( (Get-ChildItem C:\temp | Measure-Object).Count -eq 0)
{
#Folder Empty
}
简单的方法
if (-Not (Test-Path .\temp*)
{
#do your stuff here
}
-Not
如果你想在文件存在时输入'if',你可以删除
您可以使用该方法.GetFileSystemInfos().Count
检查目录的数量。微软文档
$docs = Get-ChildItem -Path .\Documents\Test
$docs.GetFileSystemInfos().Count
只需添加到 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
}
获取所有文件和目录并仅计算它们以确定目录是否为空是一种浪费。更好地使用 .NETEnumerateFileSystemInfos
$directory = Get-Item -Path "c:\temp"
if (!($directory.EnumerateFileSystemInfos() | select -First 1))
{
"empty"
}
$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"
}
删除空文件夹的示例:
IF ((Get-ChildItem "$env:SystemDrive\test" | Measure-Object).Count -eq 0) {
remove-Item "$env:SystemDrive\test" -force
}
#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}
#################################################
# 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
}
用于管道的一条线,也使用GetFileSystemInfos().Count
with 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
错过了带括号的目录名称。
从 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"
}
}
上面的代码首先尝试访问该文件夹。如果发生错误,则输出发生错误。如果没有错误,说明“文件夹可以访问”,然后检查它是否为空。
在查看了一些现有的答案并进行了一些试验后,我最终使用了这种方法:
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)
)。然后它将检查任何内容,包括任何目录、隐藏文件或“常规”文件**,分别由于属性d
、h
和a
。
用法应该足够清楚:
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
它自己只是显示“常规”文件。如果你从上面的函数中删除它,它无论如何都会找到隐藏文件,但不会找到其他文件。