Click here to Skip to main content
15,897,704 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
In my web application i have used file uploader control; i want to get the file exact location ie where it is exists?
Suppose there is a file named abc.txt exists in \\Server-PC\Share folder; now i want to get the path ie
\\Server-PC\Share\abc.txt

can anyone please suggest me the way to solve this.

Thanks in advance.
Posted
Comments
sahabiswarup 28-Nov-12 1:39am    
I am using this following code
System.IO.Path.GetFullPath(FileUpload1.PostedFile.FileName)

But it not works, returns a path
C:\Program Files\Common Files\Microsoft Shared\DevServer\10.0\abc.txt

1 solution

C#
string path = System.IO.Path.GetFullPath(FileUpload1.PostedFile.FileName);
 
Share this answer
 
Comments
sahabiswarup 28-Nov-12 7:32am    
i've tried this one already..
[no name] 28-Nov-12 7:42am    
So what are you up to now ?

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