我正在尝试通过Environment.getExternalStorageDirectory()从SD卡获取所有文件列表,但我从硬件存储中获取列表。我试过硬编码,但结果是一样的。知道是什么导致了这个吗?
我的代码
String path = Environment.getExternalStorageDirectory().toString()+"/";
Log.d("Files", "Path: " + path);
File f = new File(path);
File file[] = f.listFiles();
Log.d("Files", "Size: "+ file.length);
for (int i=0; i < file.length; i++)
{
Log.d("Files", "FileName:" + file[i].getName());
}
返回
Path: /mnt/sdcard/
Size: 21
FileName:LOST.DIR
FileName:.android_secure
FileName:Music
FileName:Podcasts
但我在SD卡中没有Podcast等。
半答案:在某些情况下,Environment.getExternalStorageDirectory()获取内存存储。如果我尝试String path =“/ mnt / external_sd /”;然后它的工作。但在其他设备中,存储位于其他目录中。
答案 0 :(得分:0)
试试这段代码,
File filepath = Environment.getExternalStorageDirectory();
File dir = new File(filepath.getAbsolutePath()
+ "/Save PIP/");
dir.mkdirs();
File file = new File(dir, System.currentTimeMillis() + ".jpg");
// Utils.showAlert("Image Saved to SD Card", "PIP Effect", "Ok", FrameActivity.this);
if (file.exists()) file.delete();
try {
output = new FileOutputStream(file);
bitmap_final.compress(Bitmap.CompressFormat.PNG, 100, output);
output.flush();
output.close();
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
我希望它会对你有所帮助。