Getting Full File Path Of A Clients File Using A File Dialog Box
I am trying to allow users to upload pictures to the server. I am trying to create a similar system to any website that has an 'attach' file or 'upload image' feature. All I need i
Solution 1:
It is not possible to get the file full path on local machine using browser and javascript.
However, as you would like to upload the file to the server, the easy possibility I see is to use html form with input type file
. You will receive the file on your http server when the form is submitted.
Here is a very good url http://www.cs.tut.fi/~jkorpela/forms/file.html that explains the whole process nicely.
Post a Comment for "Getting Full File Path Of A Clients File Using A File Dialog Box"