Android File Manager Library

19,123

Solution 1

This is a late answer but I worked on creating an android file explorer recently. https://github.com/mburman/Android-File-Explore

Its really straightforward. Essentially its just 1 file that you would need to integrate into your application - doesn't use intents either.

Solution 2

Why don't you create your own filebrowser using this example?

Solution 3

OpenIntent's FileManager is in fact open source:

https://github.com/openintents/filemanager

It is licensed under Apache License, Version 2.0.

You can integrate its source code in your application.

Share:
19,123

Related videos on Youtube

Richard J. Ross III
Author by

Richard J. Ross III

I am Richard J. Ross III, and am an experienced iOS, android, and .NET programmer, having written apps, open-source libraries, and tools.

Updated on June 04, 2022

Comments

  • Richard J. Ross III
    Richard J. Ross III almost 2 years

    I am admittedly not experienced in developing for android. I am looking for some API that lets me browse the users files, without installing a separate app via intents. Right now I have found the OI File Manager, but that uses intents to get it's work done. Is there another file manager library available for me to use? Preferably one that is easy to set-up and use.

  • Richard J. Ross III
    Richard J. Ross III almost 13 years
    If you read the OP, I explain why I don't want to.
  • THelper
    THelper almost 13 years
    I understand that you are looking for a library that doesn't use intents, but I think you have to accept there aren't any publicly available. So I was just pointing you to the best next thing. It's not very difficult to create a library yourself from this example (or to call an existing library via intents for that matter).
  • Richard J. Ross III
    Richard J. Ross III almost 13 years
    I have ditched the project, and won't be developing for android because of this and some other limitations. But I will accept your answer, so people don't keep answering it.

Related