在powershell中,您使用cd dir
进入目录dir
。
但如果dir
是目录的快捷方式,则cd dir
和cd dir.lnk
都会出错,并说该目录不存在。
那么我该如何遵循这条捷径?
(在Linux中cd dir
正常工作。在Windows中,我不知道)
答案 0 :(得分:5)
使用shell com-object,您可以获取目标路径,然后从那里执行您想要的操作。 Get-ShortcutTargetPath
function Get-ShortcutTargetPath($fileName) {
$sh = New-Object -COM WScript.Shell
$targetPath = $sh.CreateShortcut($fileName).TargetPath
[System.Runtime.Interopservices.Marshal]::ReleaseComObject($sh) | Out-Null
return $targetPath
}
$file = 'Path\to\Filename.lnk'
$TargetPath = Get-shortcutTargetPath($file)
if (Test-Path -PathType Leaf $TargetPath) {
$TargetPath = Split-Path -Path $TargetPath
}
Set-Location $TargetPath
答案 1 :(得分:0)