FilePicker icon indicating copy to clipboard operation
FilePicker copied to clipboard

Not all file is showing for a custom extention

Open ChadiGSfeir opened this issue 3 years ago • 1 comments

Describe the bug I'm creating a file with .abc extension the file picker only return one file with the .abc, knowing that i have more then 8 file with .abc in Documents folder.

To Reproduce File folder = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOCUMENTS);

            Intent intent = new Intent(MyActivity.this, FilePickerActivity.class);
            intent.putExtra(FilePickerActivity.CONFIGS, new Configurations.Builder()
                    .setCheckPermission(true)
                    .setShowFiles(true)
                    .setShowAudios(false)
                    .setShowImages(false)
                    .setShowAudios(false)
                    .setMaxSelection(1)
                    .setSuffixes("abc")
                    .setRootPath(folder.getAbsolutePath())
                    .setSkipZeroSizeFiles(true)
                    .build());

Expected behavior I expect to see all my .abc files

Android info (please complete the following information):

  • Device Samsung
  • android 11

Additional context Add any other context about the problem here.

ChadiGSfeir avatar Aug 23 '21 11:08 ChadiGSfeir

Although i updated implementation 'com.github.jaiselrahman:FilePicker:1.3.2' to implementation 'com.github.jaiselrahman:FilePicker:1.4.0-beta01'

but I cannot b able to access the media file i.e Images or Videos in Android 11 anyone Solve plz healp

adilomatom avatar Dec 01 '21 05:12 adilomatom