正如问题本身解释了问题,
下面的代码用于访问文件,但它返回 false,但文件存在于特定位置
Directory appDocDir = await getApplicationDocumentsDirectory();
String appDocPath = appDocDir.path;
File file = File('${appDocPath}/folder_name/out.mp4');
bool value = await file.exists();
print(value); // return false
我怎样才能在这里获得正确的文件访问权限?