Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

directoryReader.readEntries returns only media files and directories under Android > 7 #557

Open
2 of 3 tasks
wencywww opened this issue Jan 25, 2023 · 0 comments
Open
2 of 3 tasks

Comments

@wencywww
Copy link

Problem

directoryReader.readEntries() does not return all existing entries

What is expected to happen?

To receive an array containing entries for all existing directories and files regarding of their type

What does actually happen?

Under Android 11, when using directoryReader.readEntries() to read a particular directory, the returned array seems to contain only media-type file entries (jpg/png, amr, mp4, etc.). and directory entries

Information

I use Samsung 2 phones with identical contents of the given directory, one with Android 7, the other with Android 11. The first one works as expected, but the second one does not. The same is with a third device using Android 12

Command or Code

function printDirectoryContents() {
    window.resolveLocalFileSystemURL(cordova.file.externalRootDirectory + "mydir", function (dirEntry) {
        var directoryReader = dirEntry.createReader();
        directoryReader.readEntries(function (entries) {
                console.log(entries);
        });
    });
}

Version information

Cordova: 11.0.0
Cordova-plugin-file: 7.0.0
Android v. 7, 11, and 12

Checklist

  • I searched for existing GitHub issues
  • I updated all Cordova tooling to most recent version
  • I included all the necessary information above
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant