从 Win64 位的外部进程文件句柄获取文件名 - C#
有人可以帮助我吗?
我想获取与外部进程的文件句柄相对应的文件名。
目前我只能在 Win32bit 上做到这一点,而不能在 Win64bit 上做到这一点。
在 Windows 64 位中执行此操作是否需要代码签名?
谢谢 !
can somebody please help me.
I want to get the filename that corresponds to a file handle of an external process.
Currently i managed to do that only on Win32bit and not Win64bit.
Is code signing required to do that in Windows 64bit ?
Thanks !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须将应用程序编译为 AnyCPU(而不是 x86),因为在 x64 操作系统上只有 x64 进程可以访问其他 x64 进程。
You have to compile your application as AnyCPU (not x86), because on an x64 OS only x64 processes can access other x64 processes.