C++ Ignore Virtual File System(VFS) for specified actions with files

114 Views Asked by At

There's an application A which adds Virtual file system support for application B. I am writing a DLL for application B and I'd like to perform some actions on real(not VFS) files(check if files exist,read, write files). So basically I want some file actions to ignore VFS completely. I am using C++ 17 filesystem library.

Is it possible to do what I want from a DLL?

0

There are 0 best solutions below