I have an security application that creates a symlink to a /content directory (which is disabled from web view). It works fine under *nix of course, but now the boss wants it to work on NT/IIS. I know that symlink() won't work on Win32 and I'm not sure if I can create a shortcut that the server would follow to the content.
A normal link to the content looks something like this:
/10009fd35800e1cf72819405a31d75e3e8581 -> /content
Is there any way to create the session link/shortcut without copying the content into a new folder? Most content folders have 100+ MB of data so copying that for each user would not be efficient.