在我的应用程序(根设备)中,我想对一些文件、文件夹进行 chmod 读写。我的代码在这里:
String path = "/mnt/sdcard/.android_secure";
String[] chmod = { "su", "-c","chmod 777 "+path };
try {
Runtime.getRuntime().exec(chmod);
} catch (IOException e) {
e.printStackTrace();
}
File f = new File("/mnt/sdcard/.android_secure");
f.canRead();
但文件仍然无法读取!