安卓文件管理器打开指定目录
程序员文章站
2022-07-14 10:20:23
...
File destDir = new File(getApplicationContext().getExternalCacheDir()+"//eml");
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setDataAndType(Uri.fromFile(destDir), "*/*");
intent.addCategory(Intent.CATEGORY_OPENABLE);
startActivityForResult(intent, IMPORTEML);
上一篇: Excle 报表导出得一点心得