Here you can find the source of getRoot(String loc)
public static String getRoot(String loc)
//package com.java2s; public class Main { public static String getRoot(String loc) { if (loc.startsWith("/mnt/sdcard")) { return "/mnt/sdcard"; } else if (loc.startsWith("/mnt/innerDisk")) { return "/mnt/innerDisk"; } else {/*from w ww.j av a2s. c om*/ return "/mnt/usbDisk1"; } // return loc; } }