You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Merge branch 'master' of github.com:itinance/react-native-fs
* 'master' of github.com:itinance/react-native-fs:
Make inner variables final
Add missing AsyncTask import
Typo fixes
Use AsyncTask for copyFileTask so that it occurs in a background thread rather than blocking the UI thread while the copy takes place
Fix more types
Fix types
Typescript type definitions
Use the correct parameters for the native Windows implementation of the 'writeFile' function.
PMP-5747 Fix EISDIR on stat directory
Add missing arg to moveFile
Fix windows dev environment
Fix crash with large downloads
Add missing `options` arguments
Fix compatibility with latest `react-native-windows`
Update README.md
Update README.md
Add scanFile method (Android only)
Copy file name to clipboardExpand all lines: README.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -370,6 +370,8 @@ The following constants are available on the `RNFS` export:
370
370
- `ExternalDirectoryPath` (`String`) The absolute path to the external files, shared directory (androidonly)
371
371
- `ExternalStorageDirectoryPath` (`String`) The absolute path to the external storage, shared directory (androidonly)
372
372
373
+
IMPORTANT: when using `ExternalStorageDirectoryPath` it's necessary to request permissions (onAndroid) to read and write on the external storage, here an example: [React Native Offical Doc] (https://facebook.github.io/react-native/docs/permissionsandroid)
Returns an array with the absolute paths to application-specific directories on all shared/external storage devices where the application can place persistent files it owns.
0 commit comments