I would like to define a virtual path that will be related to a physical path in windows .Net application (c#). In addition, the physical path will change according to the requirements.
f.e
Define a virtual path: c:\VirtualPath
in code,
and this path will be related each time to a different path - c:\AppName\1
or c:\AppName\2
etc.
Which functions need to use in order to do it?
Thanks