gpt4 book ai didi

android - 无法在外部 SD 卡中创建目录 (Lollipop)

转载 作者:行者123 更新时间:2023-11-29 00:07:45 25 4
gpt4 key购买 nike

我对内部存储没问题,但我想在外部 SD 卡上创建一个目录,对于 KitKat 之前的版本,File.mkdirs() 有效。

这是我的部分代码:

//external sd card
DocumentFile.fromFile(new File("/storage/sdcard1/")).exists(); //returns true
DocumentFile.fromFile(new File("/storage/sdcard1/")).canRead(); //returns true
DocumentFile.fromFile(new File("/storage/sdcard1/")).canWrite(); //returns true
DocumentFile.fromFile(new File("/storage/sdcard1/test")).exists(); //returns false
DocumentFile.fromFile(new File("/storage/sdcard1/")).createDirectory("test"); //returns null

//internal storage
DocumentFile.fromFile(new File("/storage/emulated/0/")).exists(); //returns true
DocumentFile.fromFile(new File("/storage/emulated/0/test")).exists(); //returns false
DocumentFile.fromFile(new File("/storage/emulated/0/")).createDirectory("test"); //it works
DocumentFile.fromFile(new File("/storage/emulated/0/test")).exists(); //returns true
DocumentFile.fromFile(new File("/storage/emulated/0/test")).createFile("text", "file.txt"); //it works

//external sd card
(new File("/storage/sdcard1/test2/subfolder")).exists(); //returns false
(new File("/storage/sdcard1/test2/subfolder")).mkdirs(); //returns false

//internal storage
(new File("/storage/emulated/0/test2/subfolder")).exists(); //returns false
(new File("/storage/emulated/0/test2/subfolder")).mkdirs(); //returns true

在 AndroidManifest.xml 中:

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

使用 BQ Aquaris e4、Android Lollipop 5.0 和 1GB 微型 SD 卡进行测试。

更新:这是我获取卷列表的方式:

private static ArrayList<StorageInfo> listAvaliableStorage(Context context) {
ArrayList<StorageInfo> storagges = new ArrayList<>();
StorageManager storageManager = (StorageManager) context.getSystemService(Context.STORAGE_SERVICE);
try {
Class<?>[] paramClasses = {};
Method getVolumeList = StorageManager.class.getMethod("getVolumeList", paramClasses);
getVolumeList.setAccessible(true);
Object[] params = {};
Object[] invokes = (Object[]) getVolumeList.invoke(storageManager, params);
if (invokes != null) {
StorageInfo info;
for (Object obj : invokes) {
Method getPath = obj.getClass().getMethod("getPath");
String path = (String) getPath.invoke(obj);
info = new StorageInfo(path);
File file = new File(info.getPath());
if ((file.exists()) && (file.isDirectory())
//&& (file.canWrite())
) {
info.setTotalStorage(file.getTotalSpace());
info.setFreeStorage(file.getUsableSpace());
Method isRemovable = obj.getClass().getMethod("isRemovable");
String state;
try {
Method getVolumeState = StorageManager.class.getMethod("getVolumeState", String.class);
state = (String) getVolumeState.invoke(storageManager, info.getPath());
info.setState(state);
info.setRemovable((Boolean) isRemovable.invoke(obj));
} catch (Exception e) {
e.printStackTrace();
}

storagges.add(info);
}
}
}
} catch (NoSuchMethodException | IllegalArgumentException | IllegalAccessException | InvocationTargetException e) {
e.printStackTrace();
}
storagges.trimToSize();

return storagges;
}

硬编码路径仅适用于此示例

更新 2:我用文件资源管理器在 SD 卡中创建了目录:“test”。当我执行这段代码时:

File file = new File("/storage/sdcard1/test/", "file.txt");
fileOutput = new FileOutputStream(file);

第二行抛出FileNotFoundException:/storage/sdcard1/test/file.txt: open failed: EACCES (Permission denied)

我做错了什么?

最佳答案

这是由于 Android Lollipop 的设计。Environment.getExternalStorageDirectory() 将仅返回模拟外部存储的路径。Android 不会公开任何提供 SD 卡路径的 API。

此外,在 Lollipop 中,除非通过存储访问框架获得用户许可,否则应用无法写入 SD 卡中其自身目录之外的位置。

试试 context.getExternalFilesDirs()。这为您提供了一个路径列表,您的应用程序可以将数据写入这些路径。其中之一将在 sdcard 中,就像/storage/sdcardname/Android/data/yourAppName/files

关于android - 无法在外部 SD 卡中创建目录 (Lollipop),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32629792/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com