As question explains itself the problem,
Below code is used to access the file, but it's returning false, but the file exists on a particular location
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
How could I get the right access of file here?