0

嗨,在我的文件管理器中,我想添加一个选项以在 /system 目录中创建文件夹。我试过这个添加到我的代码中。它不起作用。我做错了什么?

File dir = new File(path + name);

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

1 回答 1

0

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

Runtime.getRuntime().exec("su -c \"mkdir " + dir.getAbsolutePath + "\"");
于 2013-09-01T11:32:06.900 回答