Is there any mechanism to get the file name when user is deleting the file on windows explorer. Whether it is possible at the application level?
用户在Windows资源管理器上删除文件时是否有任何获取文件名的机制。是否可以在应用程序级别?
1 个解决方案
#1
0
Register an ICopyHook
extension, check ICopyHook::CopyCallback
for flag FO_DELETE
. (despite the name, the hook is also called for moves and deletes).
注册ICopyHook扩展,检查ICopyHook :: CopyCallback是否为标志FO_DELETE。 (尽管名称,钩子也被称为移动和删除)。
#1
0
Register an ICopyHook
extension, check ICopyHook::CopyCallback
for flag FO_DELETE
. (despite the name, the hook is also called for moves and deletes).
注册ICopyHook扩展,检查ICopyHook :: CopyCallback是否为标志FO_DELETE。 (尽管名称,钩子也被称为移动和删除)。