I want to access my smartphone (samsung galaxy s4) via Java just like any other USB-drive but it does not show up in the list of drives:
File[] f = File.listRoots();
for (int i = 0; i < f.length; i++) {
String drive = f[i].getPath();
System.out.println("Drive: " + drive);
}
Windows seems to classify it as an mobile device. Is there a simple way to detect it just like any other drive?