react-native-fs icon indicating copy to clipboard operation
react-native-fs copied to clipboard

Native filesystem access for react-native

Results 229 react-native-fs issues
Sort by recently updated
recently updated
newest added

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: ![Screenshot_20200814_173211](https://user-images.githubusercontent.com/61767468/90297517-61580900-de54-11ea-9e92-bd17d4ce9584.png) Error: ![IMG-0689](https://user-images.githubusercontent.com/61767468/90297574-8d738a00-de54-11ea-8846-7b842f8351f8.png) I have confirmed...