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

I used this package to read the files inside folder. Its working fine. But after few days, Its returning null value.

I want to copy the files from the cache to the directory after modifying them. But asf.sync() doesn't work. It just copies the files in directory to cache. what should...

Saf saf = Saf("Android/data"); await saf.getDirectoryPermission(isDynamic: true); Then, i can get subfolders under “Android/data/” by saf.getFilesPath(),but when i try to list subfolders under "Android/data/com.android.camera2", it failed(PathAccessException Permission denied, errno =...

Writing to external directory is required for certain cases and it gives too much complexities in achieving this. Play console does not allow apps to be published with "External manage"...

Hi, I was wondering if we can sort the list of strings by their creation time or modified time. I'm making the use of cache method which returns list of...

``` Saf saf = Saf("Android/media/com.whatsapp.w4b/WhatsApp Business/Media/.Statuses"); bool? isSync = await saf.sync(); if (isSync != null && isSync) { List? _paths = await saf.getCachedFilesPath(); if (_paths != null) { loadImage(_paths); }...

Is it possible to cache all subdirectories recursively with this plugin ?

Hello if possible can you add read or write access to data or obb folder. There is native File explorer that allows that here is commit for that. Thanks :D....