我的目录结构如下所示:
C:\TFS\MasterScript\Script1.ps1
C:\TFS\ChildScript\Script2.ps1
我想要做的是在Script2.ps1中指定相对路径,以便在目录hirearchy中查找Script1.ps1。
这是我在Script2.ps1中尝试过的:
Import-Module ../MasterScript/Script1.ps1
但它不起作用,并说无法找到模块。
如果我说Import-Module C:\TFS\MasterScript\Script1.ps1
,它可以正常工作。
我在这里缺少什么?
答案 0 :(得分:57)
使用相对路径时,它基于当前位置(通过Get-Location获取)而不是脚本的位置。试试这个:
$ScriptDir = Split-Path -parent $MyInvocation.MyCommand.Path
Import-Module $ScriptDir\..\MasterScript\Script.ps1
在PowerShell v3中,您可以在脚本中使用自动变量$PSScriptRoot
将其简化为:
# PowerShell v3 or higher
#requires -Version 3.0
Import-Module $PSScriptRoot\..\MasterScript\Script.ps1
答案 1 :(得分:3)
这对我有用:
$selfPath = (Get-Item -Path "." -Verbose).FullName
$dllRelativePath = "........"
$dllAbsolutePath = Join-Path $selfPath $dllRelativePath
Import-Module $dllAbsolutePath
答案 2 :(得分:1)
为此的新方法是$PSScriptRoot
Import-Module $PSScriptRoot\Script1.ps1
好一点的内胆。