react-native-fs
react-native-fs copied to clipboard
Native filesystem access for react-native
Documentation states that `copyFileAssets Will overwrite destPath if it already exists`. This is not true. If the new file is smaller than existing, it will replace the first bytes of...
Hi, I have a modal that inside the modal is a cross to close the modal and a file to download. When the download starts, the cross does not work...
After upgrading stuff the following line https://github.com/itinance/react-native-fs/blob/fcb62f622969be4634a8e2aebc67235bd1075c78/android/src/main/java/com/rnfs/RNFSManager.java#L119 throws the following error ``` .../node_modules/react-native-fs/android/src/main/java/com/rnfs/RNFSManager.java:119: error: cannot find symbol return android.os.Build.VERSION.SDK_INT
Getting below error whenever I try to `RNFS.downloadFile(...)`. Immediately gives me this cryptic error and I have no idea why or what to do to resolve it. ``` Error: progressInterval...
I just wanted to raise to your attention that there are performance issues due to string concatenation being currently unoptimized in Hermes: https://github.com/facebook/hermes/issues/111
This is an implementation using react-native-windows vnext. It is a port of the existing modules and tests
I tryed to download a small file, around 0.02M, there was no progress returned back, but if the file is big enough, the progress function worked well.
## steps to reproduce ```js // item is a GIF image picked from IOS camera roll const destination = `${RNFS.TemporaryDirectoryPath}${item.filename}` let absolutePath = await RNFS.copyAssetsFileIOS(item.uri, destination, 0, 0) // by...
On iOS platform, when I call `downloadFile` method without setting the `begin` callback param, the `progress` callback not get called anyway. In **Downloader.m** file, `progressCallback` get called only when `statusCode`...
Added react-native-fs to my project and receive an Invariant Violation error. Project is using Expo not sure if this is the issue. My code:  Error:  I have confirmed...