我想从手机内存中读取文件。我的设备中有两个内存,即 sdcard0 和 sdcard1.sdcard1 是手机内存。所以我的文件在手机内存中。它的路径是/storage/sdcard1/Android/New_Data.xml
。所以这是正确的访问方式吗?请建议我为此做了什么
代码
File file=new File("/storage/sdcard1/Android/New_Data.xml");
if (file.exists()) {
}else{
}
这工作正常,但我想知道这是否正确