0
我正在使用文件管理器,我希望能夠獲得對/ data文件夾的根訪問權限。我想從該目錄創建和維護File對象。我怎樣才能做到這一點?以下是我試過到目前爲止..Android使用Roottools獲得對「/ data」文件夾的許可?
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
}
這仍然不起作用。我嘗試過這個。 – user2351234
什麼都不起作用?發佈您的代碼和日誌。 – EvZ
我發佈了代碼,但我猜測它與listfiles命令有關,我不確定是否可以這樣做。 – user2351234