是否可以使用连接路径点源路径?
例子
使用 MASTER.ps1 我调用 CHILD.ps1
MASTER 位于 C:\Folder
孩子住在 C:\Folder\Sub
MASTER.ps1
$FooBar = 'Cheese'
"C:\Folder\Sub\CHILD.ps1 " | Invoke-Expression
CHILD.PS1
. (Join-Path $PSScriptRoot\..\ 'MASTER.ps1')
Write-Output "$FooBar"
Things I tried
. (Join-Path $PSScriptRoot\..\ 'MASTER.ps1')
. (Join-Path $PSScriptRoot "\..\MASTER.ps1")
. (Join-Path "$PSScriptRoot\..\MASTER.ps1")
. (Join-Path "$PSScriptRoot\..\" 'MASTER.ps1')