C# – Get the full path from a file upload

asp.netcfile upload

When I'm using the file upload control I just get only the file name, but I want to get the full path of the file location.

How do I get the full path from the file upload control in ASP.NET?

Best Answer

This is not possible in any browser, as a security measure.

If this were possible, an attacker could gain information regarding how files/folders were structured on a client computer.

Why do you need this information?