up vote 1 down vote favorite
share [g+] share [fb]

I am trying to extract the entire path of the file that a user uploads on the browser and this i need to do using javascript or jquery.

If i give ($("#userfile").val()); i am able to extract only the file name and not the entire path.

Could someone please help me with this?

link|improve this question
feedback

5 Answers

I believe that it's a security measure to not reveal the entire path of file inputs.

link|improve this answer
feedback

Internet explorer will give you the full path, but other browsers won't. here's an example page i found that demonstrates this

link|improve this answer
1  
FF2 gives you the full path as well. – Crescent Fresh Mar 23 '09 at 15:51
feedback

Yeah, browser security measure.

link|improve this answer
feedback

as indicated above this is usually permission issue. try and and move the file to a different area and grant it full permissions.

var path = $('#file').attr("value");

this will also give you the path of the file

link|improve this answer
feedback

With IE8 this is not the case too. IE8 hides the real path to the file and changes it, for example, to:

C:\\**fakepath**\filename
link|improve this answer
feedback

Your Answer

 
or
required, but never shown