1

如何将 Web 配置资源目录路径与已解析的主目录路径连接起来。在 Octopus 中,resolve-path 为我提供了正确的目录路径,但我无法将该路径与另一个目录连接起来。我正在使用以下代码,请指导。

$webConfigResources = (resolve-path .)
$webConfigResources +=  "\ResourcesConfiguration.config"
$doc = (gc $webConfigResources) -as [xml]
$doc.SelectSingleNode('//resourcesConfigSection/resources/@baseDirectory').'#text' =            
$doc.Save($webConfigResources)
4

1 回答 1

4

Resolve-Path 返回一个 System.Management.Automation.PathInfo 对象(不是字符串)。使用加入路径

$webConfigResources = Join-Path (Resolve-Path .) "\ResourcesConfiguration.config"
于 2013-08-30T11:47:31.150 回答