Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
Why would you chose to save the folder location? – hjpotter92 Oct 17 '12 at 20:06
Are you trying to upload all files in the selected folder? – Parag Meshram Oct 17 '12 at 20:09
The question is, what would you do with the folder once you got it? Would you want to upload all the files in the folder? Or do something else with to the folder? The browser would not ordinarily be able to do anything with the folder directly, so unless your plan it to upload the contents, there isn't much logic in wanting to specify the folder. – Spudley Oct 17 '12 at 20:10
Ok so basically I have PHP script which creates an Array of all image files that are located within a folder and I am wanting to create some kind of selection process for the user to select which folder the script needs to run on. The PHP script then creates an array of image files and displays all the images on one web page. Sounds like a bad idea now, but there is point to doing this. – Ben Oct 17 '12 at 20:12

4 Answers

This page here, seems to have a full example that does what you're after.

share|improve this answer
This sounded good, but when I run it I just got an error saying "Could not load Drives. The ActiveX control could not be started". So not sure what the problem was there. – Ben Oct 17 '12 at 20:31
1  
Actaully, iv just read that it could be saying that because im running locally. So tomorrow i'll put it on my server and try it on there. – Ben Oct 17 '12 at 20:33
Did a little box show up in your browser asking you if you wanted to "Allow Active X"? Or maybe your browser is automatically rejecting ActiveX controls, in which case you'd have to check the settings. – Arrow Oct 17 '12 at 20:33
ah ok, ill do that – Ben Oct 17 '12 at 20:53
No, iv got no luck with that, iv been through all my internet settings and its all set to Enabled and iv done it in all 5 browsers that I have and its not working. So i'll try it on my server tomorrow. Thanks – Ben Oct 17 '12 at 21:00
show 4 more comments

You're most likely looking at using a flash/silverlight/activeX control. The <input type="file" /> control doesn't handle that.

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 change event then strip the filename portion and save the path somewhere--but that's about as good as it gets.

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.

share|improve this answer

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.

share|improve this answer

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.