获取在 Adob​​e Reader 中打开的文件的路径

发布于 2024-08-24 12:55:23 字数 51 浏览 6 评论 0原文

是否可以使用 C# 代码检索在 adobe reader 中打开的 pdf 文件的路径?

Is it possible to retrieve the path of a pdf file opened in adobe reader using C# code?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

涙—继续流 2024-08-31 12:55:23

使用 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.

雅心素梦 2024-08-31 12:55:23

本文讨论如何枚举所有打开的句柄。可以使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文