How can I select a folder in a Django form?
django, forms
Solution
It is impossible, you will never receive a directory name back from the type="file" input button
Problem
Is there a simple way to allow the user to select a folder from a Django form? I want to use the same widget as for a FileField, but only allow the user to select a folder so I can process all the files in that folder. Thanks.