Hello everyone,
I’m trying to find a way to intercept I/O requests that originate from a specific folder using a minifilter driver. I understand that attaching the minifilter to the volume containing that folder works, and that I could also filter requests by checking for a path prefix match. However, I’m wondering if there’s a more efficient approach that allows interception of only the I/O requests from that particular folder, since prefix matching seems costly in terms of performance.
Thanks in advance!