Get Folder Name
I have an open Acrobat file. I can link to it and 'get' various parameters:
Set AVDocument = AcroApp.GetAVDoc(1)
Set PDDocument = AVDocument.GetPDDoc
GetOpenPDFTitle = AVDocument.GetTitle
GetOpenPDFName = PDDocument.GetFileName
What I want to obtain is the folder in which the PDDocument is located. I was hoping for something simple like
GetPDFFolder = PDDocument.GetFolder or ".GetPath" or "GetFullName" or the like, but none are available.
How do I determine the name of the Path or Folder of the active PDF file?
