从模块中获取导入脚本的路径?

kly*_*lyd 4 powershell powershell-4.0

有没有办法获取从该模块中导入模块的脚本的路径?

我正在编写的脚本模块旨在从与导入脚本相关的文件中加载设置。我计划在多个项目中重用该模块,因此我希望该模块不能对其从何处导入做出任何假设。

这是一个很好的拥有,模块可以尽可能隐式会很棒。如果所有其他方法都失败了,我可以让调用者通过它的位置。

不幸的是,到目前为止我所尝试的一切都返回了模块的路径(而不是导入的路径)。这是一个简单的演示:


Test-RelativeModule.ps1存储在: c:\test\

import-module "$PSScriptRoot\mod\Test.psm1"
Run Code Online (Sandbox Code Playgroud)

Test.psm1存储在: c:\test\mod\

# returns 'c:\test\mod'
write-host "`$PSScriptRoot: $PSScriptRoot"

# returns 'c:\test\mod'
# The value of $MyInvocation.MyCommand.Path is 'c:\test\mod\Test.psm1'
write-host "Split Invoation: $(Split-Path $MyInvocation.MyCommand.Path)"

# returns whatever path the console is currently residing
write-host "Resolve Path: $((resolve-path '.\').path)"

# what I'm looking for is something to return 'c:\test' from within the module
# without making any assumptions about the folder structure
Run Code Online (Sandbox Code Playgroud)

Kei*_*ill 5

尝试这个:

Write-Host "My invoker's PSScriptRoot: $($MyInvocation.PSScriptRoot)"
Run Code Online (Sandbox Code Playgroud)