作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的手机有两个存储,一个是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#a5710250和 this
所以像这样使用一个函数来获取所有分机卡的列表...
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/
我是一名优秀的程序员,十分优秀!