I need user to select file on his computer and get only location of that file (not to upload). Any suggestions?
Thanks,
Ile
I need user to select file on his computer and get only location of that file (not to upload). Any suggestions?
Thanks,
Ile
You can use javascript with ActivxObject
to get file detail of client machine
see the following article might help you Using JavaScript to read a client-side file
you could create a <file ...> input and when the user clicks the submit button, read the value of the input and then remove it from the DOM before the form is submitted.
I'm not sure if there's a better way.