拦截Windows中的移动命令
我正在开发文档标记软件的插件。我想拦截Windows资源管理器中的MOVE操作,并让标记软件来处理它。
我在想Hooks、DLL注入。用户可以通过多种方式发起 MOVE,我需要拦截所有这些方式。
有没有人有其他想法。如果您也可以发布一些示例链接,那就太好了。
蒂亚·
苏杰
I am working on a plugin for a document tagging software. I would like to intercept the MOVE operation in Windows explorer , and let the tagging software handle it instead .
I was thinking about Hooks, DLL injection . The MOVE can be initiated by several ways by the user, and I need to intercept all of them.
Does anyone have other ideas. It would be nice if you can post some example links too.
TIA
Sujay
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于这个问题,Detours 是错误的解决方案。
相反,请考虑使用类似 FileSystemWatcher http://msdn.microsoft.com/en-us /library/x7t1d0ky 或内核模式文件系统过滤驱动程序。
Detours is the wrong solution for this problem.
Instead, consider using something like a FileSystemWatcher http://msdn.microsoft.com/en-us/library/x7t1d0ky or a kernel-mode Filesystem filter driver.