Alpha

Results 61 comments of Alpha

Yes, looks like the same problem as #52 hits these other APIs as well.

Can you try `react-native-file-access@beta`? One key difference is if you are using a scoped storage uri, you must use `AndroidScoped.appendPath(dir, 'data.txt')` instead of `dir + '/data.txt'` when generating paths.

Thanks for the report; known regression in v2.4.4. I should have a fix out soon. In the mean time, you can rollback v2.4.3.

In my radar, though I currently do not have the development bandwidth to work on this, so no time estimate.

I do no use either platform myself, however I would be happy to review pull requests for them.

File is put where [os says it should be](https://github.com/alpha0010/react-native-file-access/blob/v2.2.0/ios/FileAccess.swift#L105). Best as I can tell, that is always sandboxed within the app (might not be true for macos, but I do...

Oops, sorry, my vision just skipped over the non-English text (or maybe the screenshot did not load for me before?). That is probably a bug. However, try using `cp()`, and...

The focus of this library is filesystem actions. For more advanced upload/download control, consider https://github.com/edeckers/react-native-blob-courier, it focuses on network, ignoring filesystem, so would compliment this library well. I have not...

I looked a bit deeper into this. Using the system managed downloader might take a bit of work, but should be reasonably straight forward implementation. - https://developer.android.com/reference/android/app/DownloadManager - https://developer.apple.com/documentation/foundation/url_loading_system/downloading_files_in_the_background App...