vote up 5 vote down star
3

I'm attempting to provide a script-only solution for reading the contents of a file on a client machine through a browser.

I have a solution that works with Firefox and Internet Explorer. It's not pretty, but I'm only trying things at the moment:

function getFileContents() {
    var fileForUpload = document.forms[0].fileForUpload;
    var fileName = fileForUpload.value;

    if (fileForUpload.files) {
        var fileContents = fileForUpload.files.item(0).getAsBinary();
        document.forms[0].fileContents.innerHTML = fileContents;
    } else {
        // try the IE method
        var fileContents = ieReadFile(fileName);
        document.forms[0].fileContents.innerHTML = fileContents;
    }
}   	

function ieReadFile(filename) 
{
    try
    {
        var fso  = new ActiveXObject("Scripting.FileSystemObject"); 
        var fh = fso.OpenTextFile(filename, 1); 
        var contents = fh.ReadAll(); 
        fh.Close();
        return contents;
    }
    catch (Exception)
    {
        return "Cannot open file :(";
    }
}

I can call getFileContents() and it will write the contents into the fileContents text area.

Is there a way to do this in other browsers?

I'm most concerned with Safari and Chrome at the moment, but I'm open to suggestions for any other browser.

Edit: In response to the question, "Why do you want to do this?":

Basically, I want to hash the file contents together with a one-time-password on the client side so I can send this information back as a verification.

flag

not that I have an answer but just for clarity's sake, do you need to know the location of the file? If not, does the location of the file have to be read from a file input or can it be a textbox/textarea/whatever? – Darko Z Apr 15 at 2:14
Good question. No, I don't really care about where the file comes from, only its contents. Using a file input seems sensible to me though as it's native html - there's one less thing I have to do. – Damovisa Apr 15 at 2:45
why do you want to do this at all? the server is meant to do that. – geowa4 Apr 15 at 23:48
Ok, in short: A user enters a password and selects a file. The password gets hashed with the file contents and this gets sent to the server along with the file. When it gets there, I can verify that the correct client password was used. – Damovisa Apr 16 at 0:48

1 Answer

vote up 1 vote down check

There does not appear to be a way to do this in WebKit (thus, Safari and Chrome). The only keys that a File object has are fileName and fileSize. According to the commit message for the File and FileList support, these are inspired by Mozilla's File object, but they appear to support only a subset of the features.

If you would like to change this, you could always send a patch to the WebKit project. Another possibility would be to propose the Mozilla API for inclusion in HTML 5; the WHATWG mailing list is probably the best place to do that. If you do that, then it is much more likely that there will be a cross-browser way to do this, at least in a couple years time. Of course, submitting either a patch or a proposal for inclusion to HTML 5 does mean some work defending the idea, but the fact that Firefox already implements it gives you something to start with.

link|flag
Thanks for that - I don't think I'm dedicated enough at this point to submit a patch. It's something that you probably wouldn't want happening without your knowledge anyway. It kinda breaks the browser sandbox... – Damovisa Apr 16 at 2:23
It doesn't break the browser sandbox, since you have deliberately chosen to upload that file; if it can get to the server, it can get back to the browser, just with an extra round trip. Given the work that is going into making offline mode work for web apps, this would be a reasonable feature. – Brian Campbell Apr 16 at 2:31
Mm, actually that's a fair point. There was user interaction to choose that file. Thanks. – Damovisa Apr 17 at 0:42

Your Answer

Get an OpenID
or

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