我正在使用文件管理器,我希望能够获得对 /data 文件夹的 root 访问权限。我想从该目录创建和维护 File 对象。我怎样才能做到这一点?这是我到目前为止所尝试的..
if (RootTools.isRootAvailable()) {
File file = new File("/data");
//here is where the app crashed, and I got a null pointer exception.
} else {
// do something else
}