Delphi - 获取应用程序打开了哪些文件
如何使用 Delphi 获取应用程序打开的文件的列表? 例如 winword.exe 打开哪些文件
How can I get the list of opened files by an application, using Delphi?
For example what files are opened by winword.exe
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用本机 API 函数 NtQuerySystemInformation 您可以列出所有进程的所有打开句柄。
试试这个例子
Using the Native API function NtQuerySystemInformation you can list all open handles from all processes.
try this example
您可以移植 walkobjects.cpp 或运行 为您执行此操作的命令行进程并解析其输出。
You could port walkobjects.cpp or run a command line process that does it for you and parse it's output.
我查看了 MSDN 页面...
它说 NtQuerySystemInformation() 是操作系统内部过程,
并且我们不建议使用它:
I've looked at the MSDN page...
it said NtQuerySystemInformation() is an OS internal proc,
and that we're not recommended to use it: