长话短说 - 我如何检查 SD 卡上使用的文件系统?
我希望能够区分 FAT 和 NTFS。
一种方法是解析 mount 命令的输出
编辑:这是代码
proc = Runtime.getRuntime().exec("mount");
BufferedReader in = new BufferedReader(new InputStreamReader(proc .getInputStream()));
String line = null;
while ((line = in.readLine()) != null) {
//parse here
}
您将不得不解析字符串行以检查文件系统中的 sdcard。我认为它也应该适用于无根设备