获取在 Adobe Reader 中打开的文件的路径
是否可以使用 C# 代码检索在 adobe reader 中打开的 pdf 文件的路径?
Is it possible to retrieve the path of a pdf file opened in adobe reader using C# code?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 COM 互操作从 C# 访问 Acrobat 的类型库。
您可以尝试使用 AcroApp.GetActiveDoc 方法获取活动文档,然后使用 AcroPPDoc.GetFilenName 发现文件名。也许。
Use COM interop to access Acrobat's typelibrary from C#.
You could try getting the active document with the AcroApp.GetActiveDoc method, and then discover the filename with AcroPPDoc.GetFilenName. Perhaps.
本文讨论如何枚举所有打开的句柄。可以使用 pinvoke 从 C# 执行此操作(尽管该功能可能在 .net 中更“本地”可访问)。使用此信息,可以检索打开的文件。但是,adobe reader 进程可能打开该文件、读取该文件,然后将其关闭。如果真是这样的话,那么查找资料就有点困难了。
This article discusses how to enumerate all open handles. It would be possible to use pinvoke to do this from C# (although maybe the functionality is accessible more "natively" in .net). Using this information, it would be possible to retrieve an open file. However, it is possible that the adobe reader process opened the file, read it, and then closed it. If that is the case, then it would be a little more difficult to find the information.