I have an app that contains different "skins", and most of these skins share the same images. For each skin, we have been creating a copy of the image directory, just in case one of the files is different.
Is there something like object oriented inheritance for an IIS directory? Meaning if a file exists, use it, otherwise pull the file from a parent directory?
Let's say my parent image folder has A.png, B.png and C.png. My "skin" image folder has just A.png.
I want to reference this from my web app so that I get the skinned A.png, but the parent B.png and C.png.
I'm guessing no, so is there a way I could replicate this in ASP.net?