我正在研究一个 PowerShell 模块,我的一个测试中的路径解析表现得非常奇怪。
当前文件夹结构如下所示:
ISPS/
├── ISPS/
│ ├── Private/
│ ├── Public/
│ │ ├── Add-ICDCrawler.ps1
│ │ ├── Get-ICDCrawler.ps1
│ │ ├── New-ICDCrawler.ps1
│ │ └── Remove-ICDCrawler.ps1
│ ├── ISPSCrawler.psd1
│ └── ISPSCrawler.psm1
├── tests/
│ ├── Add-ICDCrawler.tests.ps1
│ ├── Get-ICDCrawler.tests.ps1
│ ├── New-ICDCrawler.tests.ps1
│ └── Remove-ICDCrawler.tests.ps1
表现怪异的测试是Remove-ICDCrawler.tests.ps1
. 文件的开头和相关部分如下所示:
$ModuleRoot = Split-Path $PSScriptRoot -Parent
. $ModuleRoot\ISPS\Public\Get-ICDCrawler.ps1
. $ModuleRoot\ISPS\Public\Remove-ICDCrawler.ps1
当它运行时,点源对Get-ICDCrawler
线路正常工作,但不适用于Remove-ICDCrawler
. 这是出现的错误消息:
. : The term 'D:\Projects\ISPS\ISPS\ISPS\Public\Remove-ICDCrawler.ps1' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
At D:\Projects\ISPS\tests\Remove-ICDCrawler.tests.ps1:4 char:3
+ . $ModuleRoot\ISPS\Public\Remove-ICDCrawler.ps1
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
这已经够直截了当了。ISPS
路径中的文件夹过多。如果我ISPS
从测试的第 4 行删除其中一个文件夹并重试,它会完美运行。问题是文件Get-ICDCrawler.ps1
和Remove-ICDCrawler.ps1
文件都存储在同一个目录中,据我所知,路径应该解析为正确的目录。正如我所提到的,ISPS
从第 4 行的路径中删除是可行的,但这与我所知道的关于 PowerShell 的一切背道而驰。有谁知道为什么会这样?
Name Value
---- -----
PSVersion 5.1.15063.608
PSEdition Desktop
PSCompatibleVersions {1.0, 2.0, 3.0, 4.0...}
BuildVersion 10.0.15063.608
CLRVersion 4.0.30319.42000
WSManStackVersion 3.0
PSRemotingProtocolVersion 2.3
SerializationVersion 1.1.0.1