Message 1 of 2
Is there any way to get the file path before merging files like filePreOpenProcess?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I tried to check the files before merging them, but I didn't find any way to do it properly, plus, when I was in. NET register notifications, even filePreOpenProcess I can't get path parameters from
GlobalDelegates.Delegate5 notifHandler = new GlobalDelegates.Delegate5(Callback);
GlobalInterface.Instance.RegisterNotification(notifHandler, null, SystemNotificationCode.FilePreOpenProcess);
private static void Callback(IntPtr obj, INotifyInfo info) {
Debug.WriteLine(info.CallParam);
}