How to extract the entire path when a user uploads a file using jquery - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T15:29:28Z http://stackoverflow.com/feeds/question/672357 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/672357/how-to-extract-the-entire-path-when-a-user-uploads-a-file-using-jquery 1 How to extract the entire path when a user uploads a file using jquery kartikkowligi 2009-03-23T06:04:13Z 2009-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#672385 1 Answer by nickf for How to extract the entire path when a user uploads a file using jquery nickf 2009-03-23T06:24:37Z 2009-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#672403 2 Answer by Scott Evernden for How to extract the entire path when a user uploads a file using jquery Scott Evernden 2009-03-23T06:35:58Z 2009-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#672408 0 Answer by jarrett for How to extract the entire path when a user uploads a file using jquery jarrett 2009-03-23T06:39:52Z 2009-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#1392780 0 Answer by Martin Dobrev for How to extract the entire path when a user uploads a file using jquery Martin Dobrev 2009-09-08T08:48:55Z 2009-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>