vote up 2 vote down star

We have simple HTML form with <input type="file">, like shown below:

<form><label for="attachment">Attachment:</label> <input type="file"
name="attachment" id="attachment"><input type="submit"></form>

In IE7 (and probably all famous browsers, including old Firefox 2), if we submit a file like '//server1/path/to/file/filename' it works properly and gives the full path to the file and the filename.

In Firefox 3, it returns only 'filename', because of their new 'security feature' to truncate the path, as explained in Firefox bug tracking system (https://bugzilla.mozilla.org/show_bug.cgi?id=143220)

I have no clue how to overcome this 'new feature' because it causes all upload forms in my webapp to stop working on Firefox 3.

Can anyone help to find a single solution to get the file path both on Firefox 3 and IE7?

flag

9 Answers

vote up 1 vote down check

Only thing I've seen is part-way down this page:

link text

where the poster "kdh" suggests a workaround that captures "onBlur" for the filename textbox and copies the contents to a hidden textbox which FF 3 does not alter.

link|flag
Sounds easy fix. Thanks, I'll try it :) – m_pGladiator Sep 17 '08 at 9:02
vote up 1 vote down

Have a look at XPCOM, there might be something that you can use if Firefox 3 is used by a client.

link|flag
vote up 1 vote down

Actually, just before FF3 was out, I did some experiments, and FF2 sends only the filename, like did Opera 9.0. Only IE sends the full path. The behavior makes sense, because the server doesn't have to know where the user stores the file on his computer, it is irrelevant to the upload process. Unless you are writing an intranet application and get the file by direct network access!

What have changed (and that's the real point of the bug item you point to) is that FF3 no longer let access to the file path from JavaScript. And won't let type/paste a path there, which is more annoying for me: I have a shell extension which copies the path of a file from Windows Explorer to the clipboard and I used it a lot in such form. I solved the issue by using the DragDropUpload extension. But this becomes off-topic, I fear.

I wonder what your Web forms are doing to stop working with this new behavior.

[EDIT] After reading the page linked by Mike, I see indeed intranet uses of the path (identify a user for example) and local uses (show preview of an image, local management of files). User Jam-es seems to provide a workaround with nsIDOMFile (not tried yet).

link|flag
vote up 0 vote down

Simply you cannot do it with FF3.

The other option could be using applet or other controls to select and upload files.

link|flag
vote up 0 vote down

This answer probably won't be helpful.

To be honest, people have been writing hacks for ie for so many years and the firefox and other communities have complained about it constantly. Now it seems that firefox have taken it upon themselves to create such a situation for their own browser.

I'd say you suggest that all the people who use your website should use an alternative browser like Chrome or Opera because of this quite blatant bug in firefox. Alternatively, write a hack.

link|flag
vote up 0 vote down

This is an example that could work for you if what you need is not exactly the path, but a reference to the file working offline.

http://www.ab-d.fr/date/2008-07-12/

It is in french, but the code is javascript :)

This are the references the article points to: http://developer.mozilla.org/en/nsIDOMFile http://developer.mozilla.org/en/nsIDOMFileList

link|flag
vote up 0 vote down

the information U provided is really good one ...

But still It's not working for FF 3 .. This code only gives file name (not a full URL)..

link|flag
vote up 0 vote down

Solution/Fix for this Security Issue:

This is an alternate solution/fix... In FF3, You can retrieve file's full path in a text box instead of file browse box. And that too... By drag/dropping the file!

You can drag drop your file into a text box in your html page. and it will display the file's complete path. This data can transferred to your server easily or manipulate them.

All you have to do is... Use the extension DragDropUpload

http://www.teslacore.it/wiki/index.php?title=DragDropUpload

This extension will helps you in drag dropping files into your File Browse (Input file) box. But still you wont able to get the file full path, If you try to retrieve.

So, I tweaked this extension a little..In the way.. I can drag drop a file on to any "Text Input" box and get the file full path. And its working great!

And thus I can able to get the file full path in FF3 Firefox 3.

You can try this method!

-Kumaresan (aku.mar.zen@gmail.com)

link|flag
vote up 0 vote down

One extremely ugly way to resolve this is have the user manually type the directory into a text box, and add this back to the front of the file value in the javascript.

Messy... but it depends on the level of user you are working with, and gets around the security issue.

form> input type="text" id="file_path" value="C:/" /> input type="file" id="file_name" /> input type="button" onclick="ajax_restore();" value="Restore Database" /> /form>

  • Javascript var str = document.getElementById('file_path').value; var str = str + document.getElementById('file_name').value;
link|flag

Your Answer

Get an OpenID
or

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