How to extract the entire path when a user uploads a file using jquery - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T15:29:28Zhttp://stackoverflow.com/feeds/question/672357http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/672357/how-to-extract-the-entire-path-when-a-user-uploads-a-file-using-jquery1How to extract the entire path when a user uploads a file using jquerykartikkowligi2009-03-23T06:04:13Z2009-09-08T08:48:55Z
<p>Hi All,</p>
<p>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.</p>
<p>If i give <code>($("#userfile").val());</code> i am able to extract only the file name and not the entire path.</p>
<p>Could someone please help me with this?</p>
http://stackoverflow.com/questions/672357/how-to-extract-the-entire-path-when-a-user-uploads-a-file-using-jquery/672385#6723851Answer by nickf for How to extract the entire path when a user uploads a file using jquerynickf2009-03-23T06:24:37Z2009-03-23T06:24:37Z<p>I believe that it's a security measure to not reveal the entire path of file inputs.</p>
http://stackoverflow.com/questions/672357/how-to-extract-the-entire-path-when-a-user-uploads-a-file-using-jquery/672403#6724032Answer by Scott Evernden for How to extract the entire path when a user uploads a file using jqueryScott Evernden2009-03-23T06:35:58Z2009-03-23T06:41:30Z<p>Internet explorer will give you the full path, but other browsers won't. <a href="http://www.java2s.com/Tutorial/JavaScriptDemo/FileUpload.htm" rel="nofollow">here's an example page i found</a> that demonstrates this</p>
http://stackoverflow.com/questions/672357/how-to-extract-the-entire-path-when-a-user-uploads-a-file-using-jquery/672408#6724080Answer by jarrett for How to extract the entire path when a user uploads a file using jqueryjarrett2009-03-23T06:39:52Z2009-03-23T06:39:52Z<p>Yeah, browser security measure. </p>
http://stackoverflow.com/questions/672357/how-to-extract-the-entire-path-when-a-user-uploads-a-file-using-jquery/1392780#13927800Answer by Martin Dobrev for How to extract the entire path when a user uploads a file using jqueryMartin Dobrev2009-09-08T08:48:55Z2009-09-08T08:48:55Z<p>With IE8 this is not the case too. IE8 hides the real path to the file and changes is for example to:</p>
<p>C:\**fakepath**\filename</p>