我正在尝试获取用于在PowerPoint 2013中保存文件的默认目录。
在Word中,我可以使用:
string mypath = ap.Options.DefaultFilePath[WordApi.WdDefaultFilePath.wdDocumentsPath];
在Excel中,我可以使用:
string mypath = ap.DefaultFilePath;
其中ap是每种情况下当前正在运行的应用程序。
我使用:
Microsoft.Office.Interop.PowerPoint;
如何获取PowerPoint应用程序的DefaultFilePath? 通常,我如何访问PowerPoint选项(例如用户名等)?