saf icon indicating copy to clipboard operation
saf copied to clipboard

Flutter plugin that leverages Storage Access Framework (SAF) API to get access and perform the operations on files and folders.

Results 18 saf issues
Sort by recently updated
recently updated
newest added

Added getter function to know the directory that was given permission to, which can help writing new files in that directory by just getting `saf.directory`

i looked at your example, but its too complicated for me: i want to open Downloads to fetch a file i deposited there, i tryed: ```` .... if(defaultTargetPlatform == TargetPlatform.android)...

At first when i open my app i granted app permission to access files in the folder but after restarting phone permission is denied again

I used your example code to check the usage of SAF package. If I give saf.getDirectoryPermission(isDynamic: true ) it's working good but requesting permission ever time i close and open...

The lack of documentation and all links on both the Pub.dev and Readme of the Git is an issue! Please just restore it as it must have existed and this...

firstly when i request permission of the directory then I fetch the cache file like(.statuses from whatsapp)but when my Android device reboots the getting cache file gives exception even the...

I am wondering if there are any plans to support custom document provider: https://developer.android.com/guide/topics/providers/create-document-provider This would allow implementing a sort of virtual mount/drive for a Flutter app which in turns...

Here is the code i use: ``` var saf = Saf("/storage/emulated/0/MyApp"); ``` Then i check the permission: ``` var permission = await _saf!.getDirectoryPermission( grantWritePermission: true, isDynamic: false ); ``` Before...

I researched the documentation but couldn't find a way to just request permission for 1 or 2 or more files instead of the whole directory. Is there a way if...

I am selecting: "Testupload" folder for upload which contains two files, image.jpg and contacts.vcf. I can read image OK, but when I try to read contents of: `contacts.vcf` I get...