如何在我的应用程序中使用root创建/ system系统中的文件夹

时间:2013-08-30 11:20:10

标签: android directory root explorer su

您好,在我的Filemanager中,我想添加一个Option来在/ system目录中创建Folder。我试过这个添加到我的代码。它不起作用。我错了什么?

File dir = new File(path + name);

Runtime.getRuntime().exec("su -c \"mount -orw,remount /\"");
Runtime.getRuntime().exec("su -c \"mkdir" + dir.getAbsolutePath + "\"");

1 个答案:

答案 0 :(得分:0)

固定!我需要在mkdir之后添加一个空格。

Runtime.getRuntime().exec("su -c \"mkdir " + dir.getAbsolutePath + "\"");