I want to allow the user in my app to select one or more files.
When the user has selected the files I want to upload them to a WCF service using XMLHttpRequest
I do not however want to faff around submitting forms.
When the user selects a file it seems "value" is set to the filename (and fake path) and NOT the file itself.
Is there anyway to get access to the underlying file?
I appreciate that JS does not give you random access to the user's filesystem for obvious reasons but in this case the user has selected the file..
If I capture drag/drop of files then I get access to the files themselves
[As a second requirement there does not seem to be a way to allow the users to select multiple files..]