我一直在尝试运行此脚本,以捕获共享目录中的所有文件/文件夹,并将其传递回splunk。但是,即使我可以找到的最长路径是197个字符,该脚本也会给出PathTooLongException。
我尝试将共享映射为C驱动器根目录上名为z的文件夹,这根本没有帮助。有人可以阐明如何解决这个问题或导致错误的原因吗?
param (
[string]$directory = "C:\Windows\Logs"
)
$errorCount = 0
$OutputList = @()
$directoryLink = 'c:\z'
#set up symbolic link
cmd /c mklink /d $directoryLink $directory
try
{
$colItems = (Get-ChildItem -Path $directoryLink -Recurse | Sort-Object)
}
catch
{
$errorCount += 1
}
foreach ($i in $colItems)
{
try
{
$subFolderItems = (Get-Item $i.FullName | Measure-Object -property
length -sum -ErrorAction SilentlyContinue)
$acl=$i.GetAccessControl()
$SizeValue= [Math]::Round(($subFolderItems.sum / 1MB),3)
$SplunkFileList = New-Object PSObject
$SplunkFileList | Add-Member -type NoteProperty -name Filename -Value $i.FullName
$SplunkFileList | Add-Member -type NoteProperty -name SizeMb -Value $SizeValue
$SplunkFileList | Add-Member -type NoteProperty -name LastAccess -Value $i.LastAccessTime
$SplunkFileList | Add-Member -type NoteProperty -name Owner -Value $acl.Owner
if ($i.PSIsContainer)
{
$SplunkFileList | Add-Member -type NoteProperty -name Type -Value "D"
}
else
{
$SplunkFileList | Add-Member -type NoteProperty -name Type -Value "F"
}
$OutputList += $SplunkFileList
}
catch [System.IO.IOExeception]
{
Write-Host 'An Exception was caught.'
Write-Host "Exception : $($_.Exception.GetType().FullName)"
$errorCount += 1
}
}
$OutputList | Select-Object Filename,SizeMb,LastAccess,Owner,Type | Format-
List
答案 0 :(得分:3)
如果您使用的是Powershell的现代版本(我认为是v5.1 +),则可以使用Windows API的unicode版本获取超过260个字符的路径。
为此,您可以在路径前面加上\\?\
,例如:
Get-ChildItem -LiteralPath '\\?\C:\Windows\Logs' -Recurse
注意:LiteralPath
而非Path
如果要使用UNC路径(\\server\C$\folder
),则语法略有不同:
Get-ChildItem -LiteralPath '\\?\UNC\server\C$\folder' -Recurse