私のアプリ (ルート化されたデバイス) で、いくつかのファイル、フォルダーを読み書きするように 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();
しかし、ファイルはまだ読み取れません!