Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个已经保存的 Word 文档,我需要获取其现有的保存目录和/或完整文件路径(即 C:\Users\Public\Documents\testDoc.docx)。
如何从宏/VBA 中获取?
ActiveDocument.FullName
上面给出了文档的完整路径,包括文件名。
ActiveDocument.Path
上面给出了保存文档的目录。
ActiveDocument.Name
上面给出了文档的名称,没有路径信息。