您好,在我的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 + "\"");
答案 0 :(得分:0)
固定!我需要在mkdir之后添加一个空格。
Runtime.getRuntime().exec("su -c \"mkdir " + dir.getAbsolutePath + "\"");