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

- "react": 17.0.2 - "react-native": 0.67.2 - "react-native-fs": ^2.19.0 - "react-native-image-crop-picker": ^0.37.3 - iPhone 13 sim running iOS 15.4 I am using `React Native Image Crop Picker` to select an...

I am trying to read 2xxmb crypt12 file from FS. When I trying to run `await RNFS.readFile(`${RNFS.ExternalStorageDirectoryPath}/Whatsapp/Databases/msgstore.db.crypt12`)`, it prompts up ``` Could not invoke RNFSManager.readFile null Failed to allocate a...

question

I followed the latest react-native-windows get started(https://microsoft.github.io/react-native-windows/docs/getting-started) and `npm install react-native-fs`. Just a **pure boilerplate** react-native 0.65 app. However `npx react-native run-windows` which supposed to **autolink** react-native-fs seemed **not working**...

Dear community when I [took over](https://github.com/itinance/react-native-fs/issues/276) this fantastic library in April 2017, I was deep in react-native and used this library a lot in all our projects. However, time flew...

Hello **It's a feature request**, not an issue. `stat(filepath)` would return the file's mime type. ```typescript type StatResult = { mimeType: string?, // ... }; ```

On a real Android device, `RNFS.writeFile()` fails saying `ENOENT: open failed: EEXIST (File exists)`, while `RNFS.exists()` returns `false`. This occurs after the file was created by the app, and then...

`RNFS.stat(path)` gives: Possible Unhandled Promise Rejection (id: 0): │ Error: File does not exist │ createErrorFromErrorData@http://localhost:8081/index.bundle?platform=android&dev=true&minify=false:1730:26 │ http://localhost:8081/index.bundle?platform=android&dev=true&minify=false:1689:51 │ __invokeCallback@http://localhost:8081/index.bundle?platform=android&dev=true&minify=false:2258:23 │ http://localhost:8081/index.bundle?platform=android&dev=true&minify=false:1984:34 │ __guard@http://localhost:8081/index.bundle?platform=android&dev=true&minify=false:2172:15 │ invokeCallbackAndReturnFlushedQueue@http://localhost:8081/index.bundle?platform=android&dev=true&minify=false:1983:21 └ invokeCallbackAndReturnFlushedQueue@[native code] But...

I'm using `react-native-document-picker` to pick up a folder and using `react-native-fs` to save a file to that folder. Since `react-native-document-picker` returns a content uri not absolute path. I use `stat`...

I made a React Native for Windows app for testing RNFS. This is my `App.ts`: ``` import React, { Component } from 'react'; import { Text, View } from 'react-native';...