如何打开指定的目录

时间:2013-12-12 06:53:35

标签: android directory

我有生成PDF的应用程序,然后我放入文件夹A,如何在单击按钮(显示新的Intent)时打开并浏览文件夹A中的所有文件?我希望我的预览就像点击我的文件>>文件夹A>> [文件]。

3 个答案:

答案 0 :(得分:0)

此功能将为您提供SD卡根目录:

getExternalStoragePublicDirectory()

获取root后,您可以创建或打开文件夹。

创建文件夹使用

mkdir() 

mkdirs() 

功能

从该文件夹中获取所有文件,您可以使用File对象。

答案 1 :(得分:0)

以下是android中文件资源管理器的示例源代码: https://github.com/mburman/Android-File-Explore

非常简单的正向代码

答案 2 :(得分:0)

Doe这段代码有帮助吗? original source

String folderPath = Environnement.getExternalStorageDirectory()+"/A";

Intent intent = new Intent();  
intent.setAction(Intent.ACTION_GET_CONTENT);
Uri myUri = URI.parse(folderPath);
intent.setType("file/*");   
startActivity(intent);