gpt4 book ai didi

android - 如何在 Android 上获取多个存储文件路径?

转载 作者:行者123 更新时间:2023-11-29 21:42:44 25 4
gpt4 key购买 nike

我的手机有两个存储,一个是SD卡,另一个是extsdcard

我可以通过以下方式获取 sdcard 路径:

Environment.getExternalStorageDirectory()
.toString()

如何获取 extsdcard 文件路径?

最佳答案

使用它来获取另一个外部 SD 卡:

 File storageDir=   new File("/mnt/external_sd/")

 File storageDir=   new File("/mnt/extSdCard/")

有关详细信息,请参阅 http://mono-for-android.1047100.n5.nabble.com/detect-SD-Card-path-td5710218.html#a5710250this

所以像这样使用一个函数来获取所有分机卡的列表...

public static HashSet<String> getExternalMounts() {
final HashSet<String> out = new HashSet<String>();
String reg = "(?i).*vold.*(vfat|ntfs|exfat|fat32|ext3|ext4).*rw.*";
String s = "";
try {
final Process process = new ProcessBuilder().command("mount")
.redirectErrorStream(true).start();
process.waitFor();
final InputStream is = process.getInputStream();
final byte[] buffer = new byte[1024];
while (is.read(buffer) != -1) {
s = s + new String(buffer);
}
is.close();
} catch (final Exception e) {
e.printStackTrace();
}

// parse output
final String[] lines = s.split("\n");
for (String line : lines) {
if (!line.toLowerCase(Locale.US).contains("asec")) {
if (line.matches(reg)) {
String[] parts = line.split(" ");
for (String part : parts) {
if (part.startsWith("/"))
if (!part.toLowerCase(Locale.US).contains("vold"))
out.add(part);
}
}
}
}
return out;
}

关于android - 如何在 Android 上获取多个存储文件路径?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16665512/

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