iPaulPro / aFileChooser

[DEPRECATED] Android library that provides a file explorer to let users select files on external storage.
Apache License 2.0
1.79k stars 850 forks source link

Feature Request: Choose directory #24

Closed dipendrapkrl closed 10 years ago

dipendrapkrl commented 10 years ago

The app is really nice. One more feature that is missing is being able to choose directory. Regards,

patricks commented 10 years ago

I also would love this feature.

ravenfeld commented 10 years ago

You can test my dev https://github.com/ravenfeld/aFileChooser

jasonzhang2022 commented 10 years ago

Still can not figure out how to select a directory. Can you give an example in wiki or code?

ravenfeld commented 10 years ago

if you use my code: Intent intent = new Intent(this, FileChooserActivity.class); intent.putExtra(FileChooserActivity.EXTRA_SELECT_FOLDER, true);

jasonzhang2022 commented 10 years ago

No, this does not work. First in the current andriod(4.4), I am not allowed to use class from another library. Second, FileChooserActivity.EXTRA_SELECT_FOLDER does not event exist.