Right way to return STATUS_REPARSE in minifilter?

Sorry guys, if this has been already answered somewhere (couldn’t find), but what is the right way do ret reparse in minifilter? Should I just go “legacy” way and modify FileObject’s FileName diretly and return STATUS_REPARSE / IO_REPARSE (this works) or there is another, FltMrg-friendlt way to do that?

Nope, there is no FltMgr way to do that. Replacing the FileName is the way to go. You might want to make your function prototype similar to IoReplaceFileObjectName so you can call that one if available on the system…

Regards,
Alex.
This posting is provided “AS IS” with no warranties, and confers no rights.