Android:这种方法是否始终可用并存在?

时间:2015-06-19 21:54:50

标签: android performance storage android-file

我想对所有文件夹进行最大限度的root权限访问。 这个顺序是正确的,始终可用并存在?

File ffile = new File(Environment.getRootDirectory().getParent());
// return "/"
// "/" out root access to all folders

1 个答案:

答案 0 :(得分:1)

调用getRootDirectory()获取系统目录。如果你想要所有文件夹的真正根,它总是只是“/”。所以只需new File("/");