Pick file

Action: 
org.openintents.action.PICK_FILE
Input: 
A file URI for suggested file name or starting directory. Can also be left empty.
Intent Extra: 
Button text
Intent Extra: 
Title
Output: 
File URI of the selected file.

Pick a file through a file manager.

Sample usage:

Intent intent = new Intent("org.openintents.action.PICK_FILE");
intent.setData(Uri.parseUri("file:///sdcard/notepad.csv"));
intent.putExtra("org.openintents.extra.TITLE", "Please select a file");
startActivityForResult(intent, 1);

The picked file URI can be obtained in onActivityResult() through getData().

Details can be found in the sample application TestFileManager in the public repository, that can be also downloaded from OI download page.

You may want to use the OI File Manager intent definition file.

Applications providing Pick file

Titlesort icon Provides intent actions Provides intent URIs Uses action Uses URI Description
OI File Manager File URI

OpenIntents File Manager

Applications using Pick file

Titlesort icon Provides intent actions Provides intent URIs Uses action Uses URI Description
Convert CSV View data File URI Pick file File URI

Extension that imports and exports OI Notepad notes or OI Shopping lists.

Notepad Notepad note

Notepad for storing small notes.