'How To Exclude Android Directory, When Listing files/folders from Android device Using Flutter?

I am Not able to Exclude Android Directory and List All Folders And Files From My Android Device. #Flutter

final directory = '/storage/emulated/0/';
final myDir = Directory(fileStr); <- Here i want to Exclude 'Android' Directory 

Error

FileSystemException (FileSystemException: Directory listing failed, path = '/storage/emulated/0/Android/obb' (OS Error: Permission denied, errno = 13))

I Want to List All Folders And Files From My Android Device Excluding Android Directory. #Flutter



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source