'Flutter retrieving files from external storage

Im trying to list all the mp3 files in the Downloads folder using

   Directory dir = Directory('/storage/emulated/0/Download/');
List<FileSystemEntity> listOfAllFolderAndFiles = dir.listSync(recursive: true);
print(listOfAllFolderAndFiles);

but it only prints sub-folders and not any mp3 files.



Sources

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

Source: Stack Overflow

Solution Source