Click here to Skip to main content
15,893,668 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Dear Friends
I want to get the path of a file to be uploaded.I want this path in a textbox when we browse the file so that I can store this absolute path in databse.
Please help me.

Thanks in advance.
Akhilesh Pathak
Posted

This is what you can get:
C#
string path = FileUpload1.PostedFile.FileName 

AFAIR, recent browsers do not pass on the full filepath any more because of security reasons.

Have a look at the following discussions on similar topic:
FileUpload loses directory path.[^]
FileUpload.PostedFile.FileName not giving full path in chrome[^]
 
Share this answer
 
Comments
Sergey Alexandrovich Kryukov 25-Feb-13 17:20pm    
Right, a 5.
—SA
Sandeep Mewara 25-Feb-13 23:51pm    
Thanks SA.
If this is really ASP.NET, and this is a client/server system with a browser, then you can't.
Security will not let you know anything except the name of the file - the client may not even have a file system behind the browser (it could be an internet enabled fridge for all you know) and your server cannot file out anything about whatever is behind it.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900