我遇到了一个问题,我似乎无法使用通过 PowerShell 社区扩展 (v2.0.3782.38614) 提供的 Read-Archive cmdlet 解决问题。
这是用于展示我遇到的问题的缩减样本:
$mainPath = "p:\temp"
$dest = Join-Path $mainPath "ps\CenCodes.zip"
Read-Archive -Path $dest -Format zip
运行以上会产生以下错误:
Read-Archive : Cannot bind parameter 'Path'. Cannot convert the "p:\temp\ps\CenCodes.zip" value of type "System.String" to type "Pscx.IO.PscxPathInfo".
At line:3 char:19
+ Read-Archive -Path <<<< $dest -Format zip
+ CategoryInfo : InvalidArgument: (:) [Read-Archive], ParameterBindingException
+ FullyQualifiedErrorId : CannotConvertArgumentNoMessage,Pscx.Commands.IO.Compression.ReadArchiveCommand
如果我不使用 Join-Path 来构建传递给 Read-Archive 的路径,它可以工作,如下例所示:
$mainPath = "p:\temp"
$path = $mainPath + "\ps\CenCodes.zip"
Read-Archive -Path $path -Format zip
上面的输出:
ZIP Folder: CenCodes.zip#\
Index LastWriteTime Size Ratio Name ----- ------------- ---- ----- ----
0 6/17/2010 2:03 AM 3009106 24.53 % CenCodes.xls
更令人困惑的是,如果我比较上面两个 Read-Archive 示例中作为 Path 参数传递的两个变量,它们看起来是相同的:
这...
Write-Host "dest=$dest"
Write-Host "path=$path"
Write-Host ("path -eq dest is " + ($dest -eq $path).ToString())
输出...
dest=p:\temp\ps\CenCodes.zip
path=p:\temp\ps\CenCodes.zip
path -eq dest is True
任何人都对为什么第一个样本抱怨但第二个工作正常有任何想法?