如何获取正在运行的进程的打开/使用的文件

发布于 2024-10-14 12:07:22 字数 291 浏览 1 评论 0 原文

我尝试找出一种方法来获取进程的已使用文件,以显示该进程当前打开/使用的文件。

我发现列出使用过的文件
有在 C# 中获取此内容的链接吗?

I try to figure out a way to get the used files of a process to show which files are currently opened / used by this process.

I have found Listing Used Files.
Is there a link to get this in C#?

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

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

发布评论

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

评论(1

落在眉间の轻吻 2024-10-21 12:07:22

NtQuerySystemInformation 函数似乎是一个合乎逻辑的函数起点,但您必须通过 P/Invoke 访问它。

从我的谷歌搜索来看,似乎很多人过去都想到过这种方法,但它从未被记录在案(至少没有在 PInvoke.net)。

The NtQuerySystemInformation function seems like a logical starting point, but you'd have to access it via P/Invoke.

From my googling it seems like many people have thought of this approach in the past, but it has never been documented (at least not on PInvoke.net).

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