<input type="file" id="file-id" name="file_name" onchange="theimage();">

This is my upload button.

<input type="text" name="file_path" id="file-path">

This is the text field where I have to show the full path of the file.

function theimage(){
 var filename = document.getElementById('file-id').value;
 document.getElementById('file-path').value = filename;
 alert(filename);
}

This is the javascript which solve my problem. But in the alert value gives me

C:\fakepath\test.csv 

and Mozilla gives me:

test.csv

But I want full url. How to resolve this issue?

EDIT: If This is due to browser security issue then what should be the alternate way to do this?

link|improve this question
11  
This is the security implementation of the browser - the browser is protecting you from accessing your disk structure. It might help if you can explain why you want the full path. – Stuart Jan 31 '11 at 13:51
1  
What do you mean by full url ? Address of uploaded file ? – gor Jan 31 '11 at 13:51
2  
For the record, IE only gives the "fakepath" bit because they didn't want servers that were "expecting" a path to break. Otherwise just like other browsers for security reasons you will only get the filename (no path). More importantly, unless you have malicious intentions I can't see why knowing the path provides anything useful. – scunliffe Jan 31 '11 at 13:56
2  
browser security issue ~ if its implemented in the browser (rightly so) then it's highly unlikely you can circumvent it – Ross Jan 31 '11 at 14:22
1  
@e_maxm What server language are you using (C#, PHP, etc.)? Maybe we can help out with an example of how to handle the uploaded file. – Joe Enos Jan 31 '11 at 14:23
show 3 more comments
feedback

6 Answers

Some browsers have a security feature that prevents javascript from knowing your file's local full path. It makes sense - as a client, you don't want the server to know your local machine's filesystem. It would be nice if all browsers did this.

link|improve this answer
1  
Then what is the alternate way to know the full url? – e_maxm Jan 31 '11 at 13:52
3  
If the browser does not send the local file path, there is no way to find it out. – Petteri Hietavirta Jan 31 '11 at 13:53
2  
There is none, sorry – JohnB Jan 31 '11 at 13:53
1  
@JohnB, Then How to Upload? – e_maxm Jan 31 '11 at 14:07
6  
Just post the form: the browser will take care of the upload. Your web site doesn't need to know the full path back on the client. – Rup Jan 31 '11 at 14:09
show 3 more comments
feedback

If you really need to send the full path of the uploded file, then you'd probably have to use something like a signed java applet as there isn't any way to get this information if the browser doesn't send it.

link|improve this answer
2  
@pointy, really So, I have to change my design now:( – e_maxm Jan 31 '11 at 14:02
feedback

If you go to Internet Explorer, Tools, Internet Option, Security, Custom, find the "Include local directory path When uploading files to a server" (it is quite a ways down) and click on "Enable" . This will work

link|improve this answer
feedback

I came accross the same problem. In IE8 it could be worked-around by creating a hidden input after the file input control. The fill this with the value of it's previous sibling. In IE9 this has been fixed aswell.

My reason in wanting to get to know the full path was to create an javascript image preview before uploading. Now I have to upload the file to create a preview of the selected image.

link|improve this answer
feedback

I am happy that browsers care to save us from intrusive scripts and the like. I am not happy with IE putting something into the browser that makes a simple style-fix look like a hack-attack!

I've used a < span > to represent the file-input so that I could apply appropriate styling to the < div > instead of the < input > (once again, because of IE). Now due to this IE want's to show the User a path with a value that's just guaranteed to put them on guard and in the very least apprehensive (if not totally scare them off?!)... MORE IE-CRAP!

Anyhow, thanks to to those who posted the explanation here: IE Browser Security: Appending "fakepath" to file path in input[type="file"], I've put together a minor fixer-upper...

The code below does two things - it fixes a lte IE8 bug where the onChange event doesn't fire until the upload field's onBlur and it updates an element with a cleaned filepath that won't scare the User.

// self-calling lambda to for jQuery shorthand "$" namespace
(function($){
    // document onReady wrapper
    $().ready(function(){
        // check for the nefarious IE
        if($.browser.msie) {
            // capture the file input fields
            var fileInput = $('input[type="file"]');
            // add presentational <span> tags "underneath" all file input fields for styling
            fileInput.after(
                $(document.createElement('span')).addClass('file-underlay')
            );
            // bind onClick to get the file-path and update the style <div>
            fileInput.click(function(){
                // need to capture $(this) because setTimeout() is on the
                // Window keyword 'this' changes context in it
                var fileContext = $(this);
                // capture the timer as well as set setTimeout()
                // we use setTimeout() because IE pauses timers when a file dialog opens
                // in this manner we give ourselves a "pseudo-onChange" handler
                var ieBugTimeout = setTimeout(function(){
                    // set vars
                    var filePath     = fileContext.val(),
                        fileUnderlay = fileContext.siblings('.file-underlay');
                    // check for IE's lovely security speil
                    if(filePath.match(/fakepath/)) {
                        // update the file-path text using case-insensitive regex
                        filePath = filePath.replace(/C:\\fakepath\\/i, '');
                    }
                    // update the text in the file-underlay <span>
                    fileUnderlay.text(filePath);
                    // clear the timer var
                    clearTimeout(ieBugTimeout);
                }, 10);
            });
        }
    });
})(jQuery);
link|improve this answer
feedback

The best way for getting ride with fakepath is just simple substing. Here an example:

   function getPath(path) {
            alert(path.value); // which is "C:\\fakepath\\" + file name and extension
            var finalPath = path.value.substr(12);

            alert(finalPath);
            return finalPath; // returns just file name and you can print/put in some input
        }

and on file change call this function:

 <asp:FileUpload ID="FileUpload1" runat="server"  onchange="getPath(this)"   />
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.