长话短说 - 如何查看SD卡上使用的文件系统?
我希望能够区分FAT和NTFS。
答案 0 :(得分:5)
一种方法是解析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的文件系统。 我认为它也适用于非root设备