こんにちは、Filemanager で、/system ディレクトリにフォルダーを作成するオプションを追加したいと考えています。私はこれを私のコードに追加しようとしました。うまくいきません。私は何を間違えたのですか?
File dir = new File(path + name);
Runtime.getRuntime().exec("su -c \"mount -orw,remount /\"");
Runtime.getRuntime().exec("su -c \"mkdir" + dir.getAbsolutePath + "\"");