public List getStoragepath() {

List storagePaths = new

ArrayList();

String finalpath = "";

try {

Runtime runtime = Runtime.getRuntime();

Process proc = runtime.exec("mount");

InputStream is = proc.getInputStream();

InputStreamReader isr = new

InputStreamReader(is);

String line;

BufferedReader br = new

BufferedReader(isr);

while ((line = br.readLine())

!= null) {

String mount = new

String();

if

(line.contains("secure"))

continue;

if

(line.contains("asec"))

continue;

if

(line.contains("vold")) {

String columns[] = line.split("

");

if (columns != null && columns.length

> 1) {

mount = mount.concat(columns[1]);

File dir = new

File(mount);

if (dir.exists() &&

dir.isDirectory()) {

finalpath = mount;

storagePaths.add(finalpath);

// break;

} else {

}

}

}

}

} catch (Exception e) {

}

return storagePaths;

}

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐