Reputation: 373
Can i access my local file system files with my browser? I think it is possible, I found one mozilla firefox plugin which does the same.
As per my understanding, the way upload functionality of a browser works, in the same way we can do traversing of files.
Please provide provide me some link to know about the "upload functionality" of a browser, how does it contact to the filesystem to upload any file from a given path.
Or can I write ay client side script which can do traversing?
Upvotes: 0
Views: 980
Reputation: 77226
If you're just wanting to let the client upload a file, there's no need for plugins or Java or anything such. Just use FileUpload
in a form
.
Upvotes: 2