So I have a basic form input with the type "file" however I want the user to be able to select a folder location and not a file.
How can I get this input to select a folder and not a file, or is there another way to do it?
|
|
This page here, seems to have a full example that does what you're after. |
|||||||||||||
|
|
You're most likely looking at using a flash/silverlight/activeX control. The If you don't mind the user selecting a file as a means to getting its directory, you may be able to bind to that control's Keep in mind that webpages are designed to interact with servers. Nothing about providing a local directory to a remote server is "typical" (a server can't access it so why ask for it?); however files are a means to selectively passing information. |
|||
|
|
|
You would need to use more advanced technique for that. With php for example you could fetch a directory structure and present in a form, to let the user find the contents and select it. Then the form handler would process the request. |
|||
|
|
|
No Answer, stumbled upon this page while trying to find the solution myself. Only reason I'm replying is the couple of people who were confused as to why anyone would want to do this. Well heres my reason though I'm sure there are many others. I'm creating an intranet with project management applicationion embeded. one useful thing would be to select a folder on the network shared mapped drive where all relevant documents to that project would be stored. When the users create a new project in my php proj management app they should be able to browse to the network share and then select it. once selected they submit the form to the database so that when someone else looks up the project on the intranet the share path is presented as a clickable link. to all the relevant documents. |
|||
|
|