这是我的场景
用户从我的应用下载文件
用户按下菜单按钮转到位于 SD 卡中的下载文件
请告诉我如何实现一个链接到 SD 卡位置的按钮
以下是我的代码。
File sdCard = Environment.getExternalStorageDirectory();
File dir = new File (sdCard.getAbsolutePath() + "/downloaded/stuffs");
dir.mkdirs();
File file = new File(dir, fileName);
InputStream input = new BufferedInputStream(url.openStream());
FileOutputStream f = new FileOutputStream(file);