答案1
到目前为止,我发现的唯一可行的解决方案是通过 VBA 获取路径,这是我基于在vboffice.net,:
Public Sub GetItemsFolderPath()
'Declare/Init Variables
Dim obj As Object
Dim F As Outlook.MAPIFolder
Dim strMsg as String
Set obj = Application.ActiveWindow
'Fetch Path
If TypeOf obj Is Outlook.Inspector Then
Set obj = obj.CurrentItem
Else
Set obj = obj.Selection(1)
End If
Set F = obj.Parent
'Show path and optionally open it:
strMsg = "The path is: " & F.FolderPath & vbCrLf & "Switch to the folder?"
If MsgBox(strMsg, vbYesNo) = vbYes Then
Set Application.ActiveExplorer.CurrentFolder = F
End If
End Sub
答案2
完整路径?没有 VBA 可能就不可能。
图形用户界面在旧版 Outlook 中查找路径的方法:
- 打开电子邮件
- 按住SHIFT并CTRL击打F
- 单击Browse打开的对话框(或键盘上的ALT+ )B
- 检查新对话框的内容。
来自记忆……有时会不稳定,但这些记忆存储在肌肉记忆中