LocalHookGetNameByHandle Method |
Namespace: EasyHook
Exception | Condition |
---|---|
ArgumentException | The given handle is invalid or could not be accessed for unknown reasons. |
This allows you to translate a handle back to the associated filename for example. But keep in mind that such names are only valid for kernel service routines, like NtCreateFile. You won't have success when calling CreateFile on such object names! The regular windows user mode API has some methods that will allow you to convert such kernelmode names back into usermode names. I know this because I did it some years ago but I've already forgotten how it has to be done! I can only give you some hints: FindFirstVolume(), FindFirstVolumeMountPoint(), QueryDosDevice(), GetVolumePathNamesForVolumeName()
A valid usermode handle.