PowerShell无法找到项目 - 具有空格的路径IOException

时间:2013-07-10 13:55:37

标签: windows string powershell path

# --------------------------------------------------------- 
# ScriptingGamesBeginnerEvent8_PS1.ps1 
# ed wilson, msft 8/21/2009 
# PS1 version of HSG-08-19-09 http://bit.ly/1d8Rww 
# 
# --------------------------------------------------------- 
Param( 
 [string]$path = 'C:\', 
 [int]$first = 50 
)# end param 
# *** Function Here *** 

function Get-DirSize ($path){ 

  BEGIN {} 

  PROCESS{ 
    $size = 0 
    $folders = @() 

    foreach ($file in (Get-ChildItem $path -Force -ea SilentlyContinue)) { 
      if ($file.PSIsContainer) { 
        $subfolders = @(Get-DirSize $file.FullName) 
        $size += $subfolders[-1].Size 
        $folders += $subfolders 
      } else { 
        $size += $file.Length 
      } 
    } 

    $object = New-Object -TypeName PSObject 
    $object | Add-Member -MemberType NoteProperty -Name Folder -Value (Get-Item $path).fullname
    $object | Add-Member -MemberType NoteProperty -Name Size -Value $size 
    $folders += $object 
    Write-Output $folders 
  } 

  END {} 
} # end function Get-DirSize 

Function Get-FormattedNumber($size) 
{ 
  IF($size -ge 1GB) 
   { 
      "{0:n2}" -f  ($size / 1GB) + " GigaBytes" 
   } 
 ELSEIF($size -ge 1MB) 
    { 
      "{0:n2}" -f  ($size / 1MB) + " MegaBytes" 
    } 
 ELSE 
    { 
      "{0:n2}" -f  ($size / 1KB) + " KiloBytes" 
    } 
} #end function Get-FormattedNumber 

 # *** Entry Point to Script *** 

 if(-not(Test-Path -Path $path))  
   {  
     Write-Host -ForegroundColor red "Unable to locate $path"  
     Help $MyInvocation.InvocationName -full 
     exit  
   } 
 Get-DirSize -path $path |  
 Sort-Object -Property size -Descending |  
 Select-Object -Property folder, size -First $first | 
 Format-Table -Property Folder,  
  @{ Label="Size of Folder" ; Expression = {Get-FormattedNumber($_.size)} } 

所以我得到了这个脚本 http://gallery.technet.microsoft.com/scriptcenter/36bf0988-867f-45be-92c0-f9b24bd766fb#content

我一直在玩它并创建一个批处理文件来帮助处理这个文件的日志输出等。但是,我注意到其中包含空格的路径无法读取。例如..Documents \ My Music

    Get-Item : Could not find item C:\Users\MyUser\Documents\My Music.
    At C:\test.ps1:32 char:80
    +     $object | Add-Member -MemberType NoteProperty -Name Folder -Value (Get-It
    em <<<<  $path).fullname
+ CategoryInfo          : ObjectNotFound: (C:\Users\MyUser\Documents\My
Music:String) [Get-Item], IOException
 + FullyQualifiedErrorId : ItemNotFound,Microsoft.PowerShell.Commands.GetIt
emCommand

在代码的TechNet页面上,有人提出了问题但没有给出解决方案。我不知道如何解决这个问题。我玩过$ path参数,用“”或“等”围绕它。

以下是执行它的批处理文件的一部分:

  C:\WINDOWS\system32\WindowsPowerShell\v1.0\powershell.exe -noe -command "&       'C:\test.ps1' -path "'C:\Users\MyUser\'""

3 个答案:

答案 0 :(得分:4)

在这里回答可能有点迟,但正如Aaron所说,这不是因为路径中的空格。如果您阅读Get-Item cmdlet的文档。有一个switch -force,它允许cmdlet获取无法访问的项目,例如隐藏项目。此外,从您的代码中可以看出,您不希望为表达式运行cmdlet,因此您应该使用

而不是(Get-Item $path).FullName
(Get-Item -force -LiteralPath $path).FullName

那应该解决这个问题。

由于

答案 1 :(得分:3)

这不是路径中的空间。如果是,错误会说找不到路径C:\Users\MyUser\Documents\MyGet-ChildItemGet-Item表现得很奇怪...某些文件/目录,返回错误就像你看到的一样。这就是为什么Get-ChildItem上有-ErrorAction SilentlyContinue参数的原因。我会将同样的内容添加到Get-Item的调用中,即更改

(Get-Item $path).FullName

(Get-Item $path -ErrorAction SilentlyContinue | Select-Object -ExpandProperty FullName

甚至完全放弃对Get-Item的调用:

$path

答案 2 :(得分:1)

如TheTrowser在上面的注释中所建议:如果将双引号替换为用空格括起来的文件目录,则可以解决该问题。这就是为我解决的问题。