我想将文件和目录从/ root目录复制到SD_CARD内的其他文件夹。所以,我做了很多搜索,但找不到有用的答案。
我执行了这样的su命令:
Process pp = Runtime.getRuntime().exec("su cp "+originDir+" "+targetDir);
任何帮助都会很棒。感谢。
答案 0 :(得分:0)
尝试使用RootTools library
for android。
(RootTools:以root身份运行命令的库)。
RootTools为有根的开发人员提供标准化的set of tools
,用于开发rooted applications
。
您可以在此处找到最新版本:https://github.com/Stericson/RootTools/releases
您可以在我们的维基上找到更多信息:https://github.com/Stericson/RootTools/wiki
对于更精简的库,请查看RootShell: https://github.com/Stericson/RootShell
希望这会对你有所帮助。