I have a file that contains 2 files, one of this file is a proprietary file that is read(c++) and written(c#) by two SDK. The problem is that SDK accepts only a string of the file path to access the file. Is there a method to obtain a virtual path of this file?
EDIT 0
I have a single file like this:
common header{ ... }
file 1 { ... }
file 2 { ... }
The SDK only reads the file 2 by a path, but the path that i have is the path of the file container. I need to create a virtual path of the file 2 only.
EDIT 1 I have a file that contains the copy of 2 files and other information in the header. The SDK can access only the file 2 and only by a path string with its open file method. I need to create some kind of virtual path to this contained file.