We have around 2000 staff. Each has a shared drive to store some of their files. This shared drive points to a central location on our network.
Example:
John's F: drive -> \\ournetwork\john.doe
Jane's F: drive -> \\ournetwork\jane.doe
Each user will have a folder within the root "ournetwork" labeled with their username. I do not have to worry about the directory creation as that's already done for me. These users are all tied into our AD for authentication. Folder name == AD username.
We would like the ability to allow our users to access their mapped "F" drive from outside our network through a web page. I understand that the programming involved (assuming it comes to that) will not rely on their mapped drive but rather the UNC path as posted above.
I am open to suggestions on how to get this accomplished. ASP.NET? Is there just an IIS solution like WebDAV? (although client-side WebDAV on win 7 seems to be broken, so that may be off the table). Something else?
Thanks.