Native filesystem access for react-native
First you need to install react-native-fs:
npminstallreact-native-fs--saveIn XCode, in the project navigator, right click Libraries ➜ Add Files to [your project's name] Go to node_modules ➜ react-native-fs and add the .xcodeproj file
In XCode, in the project navigator, select your project. Add the lib*.a from the RNFS project to your project's Build Phases ➜ Link Binary With Libraries Click .xcodeproj file you added before in the project navigator and go the Build Settings tab. Make sure 'All' is toggled on (instead of 'Basic'). Look for Header Search Paths and make sure it contains both
Run your project (Cmd+R)
Android support is currently limited to only the DocumentDirectory. This maps to the app's files directory.
Make alterations to the following files:
android/settings.gradle
...
include ':react-native-fs'
project(':react-native-fs').projectDir =newFile(settingsDir, '../node_modules/react-native-fs/android')android/app/build.gradle
...
dependencies {
...
compile project(':react-native-fs')
}register module (in MainActivity.java)
- For react-native below 0.19.0 (use
cat ./node_modules/react-native/package.json | grep version)
- For react-native below 0.19.0 (use
importcom.rnfs.RNFSPackage; // <--- importpublicclassMainActivityextendsActivityimplementsDefaultHardwareBackBtnHandler {
......
@OverrideprotectedvoidonCreate(BundlesavedInstanceState) {
super.onCreate(savedInstanceState);
mReactRootView = newReactRootView(this);
mReactInstanceManager = ReactInstanceManager.builder()
.setApplication(getApplication())
.setBundleAssetName("index.android.bundle")
.setJSMainModuleName("index.android")
.addPackage(newMainReactPackage())
.addPackage(newRNFSPackage()) // <------- add package
.setUseDeveloperSupport(BuildConfig.DEBUG)
.setInitialLifecycleState(LifecycleState.RESUMED)
.build();
mReactRootView.startReactApplication(mReactInstanceManager, "ExampleRN", null);
setContentView(mReactRootView);
}
......
}- For react-native 0.19.0 and higher
importcom.rnfs.RNFSPackage; // <------- add packagepublicclassMainActivityextendsReactActivity {
// ...@OverrideprotectedList<ReactPackage> getPackages() {
returnArrays.<ReactPackage>asList(
newMainReactPackage(), // <---- add commanewRNFSPackage() // <---------- add package
);
}// require the modulevarRNFS=require('react-native-fs');// get a list of files and directories in the main bundleRNFS.readDir(RNFS.MainBundlePath).then((result)=>{console.log('GOT RESULT',result);// stat the first filereturnPromise.all([RNFS.stat(result[0].path),result[0].path]);}).then((statResult)=>{if(statResult[0].isFile()){// if we have a file, read itreturnRNFS.readFile(statResult[1],'utf8');}return'no file';}).then((contents)=>{// log the file contentsconsole.log(contents);}).catch((err)=>{console.log(err.message,err.code);});// require the modulevarRNFS=require('react-native-fs');// create a path you want to write tovarpath=RNFS.DocumentDirectoryPath+'/test.txt';// write the fileRNFS.writeFile(path,'Lorem ipsum dolor sit amet','utf8').then((success)=>{console.log('FILE WRITTEN!');}).catch((err)=>{console.log(err.message);});// create a path you want to deletevarpath=RNFS.DocumentDirectoryPath+'/test.txt';returnRNFS.unlink(path)// spread is a method offered by bluebird to allow for more than a// single return value of a promise. If you use `then`, you will receive// the values inside of an array.spread((success,path)=>{console.log('FILE DELETED',success,path);})// `unlink` will throw an error, if the item to unlink does not exist.catch((err)=>{console.log(err.message);});The following constants are available on the RNFS export:
MainBundlePath (String) The absolute path to the main bundle directoryCachesDirectoryPath (String) The absolute path to the caches directoryDocumentDirectoryPath (String) The absolute path to the document directoryExternalDirectoryPath (String) The absolute path to the external, shared directory (android only)
Reads the contents of path. This must be an absolute path. Use the above path constants to form a usable file path.
The returned promise resolves with an array of objects with the following properties:
name (String) - The name of the itempath (String) - The absolute path to the itemsize (Number) - Size in bytes
Node.js style version of readDir that returns only the names. Note the lowercase d.
Stats an item at path.
The promise resolves with an object with the following properties:
ctime (Date) - The creation date of the itemmtime (Date) - The modification date of the itemsize (Number) - The size of the item in bytesisFile (Function) - Returns true when the item is a fileisDirectory (Function) - Returns true when the item is a directory
Reads the file at path and return contents. encoding can be one of utf8 (default), ascii, base64. Use base64 for reading binary files.
Note: you will take quite a performance hit if you are reading big files
Write the contents to filepath. encoding can be one of utf8 (default), ascii, base64. options optionally takes an object specifying the file's properties, like mode etc.
The promise resolves with a boolean.
Moves the file located at filepath to destPath. This is more performant than reading and then re-writing the file data because the move is done natively and the data doesn't have to be copied or cross the bridge.
Unlinks the item at filepath. If the item does not exist, an error will be thrown.
The promise resolves with an array, which contains a boolean and the path that has been unlinked. Tip: use spread to receive the two arguments instead of a single array in your handler.
Also recursively deletes directories (works like Linux rm -rf).
check if the item exist at filepath. If the item does not exist, return false.
The promise resolves with boolean.
Create a directory at filepath. Automatically creates parents and does not throw if already exists (works like Linux mkdir -p).
IOS only: If excludeFromBackup is true, then NSURLIsExcludedFromBackupKey attribute will be set. Apple will reject apps for storing offline cache data that does not have this attribute.
Download file from url to filepath. Will overwrite any previously existing file.
If beginCallback is provided, it will be invoked once upon download starting when headers have been received and passed a single argument with the following properties:
jobId (Number) - The download job ID, required if one wishes to cancel the download. See stopDownload.statusCode (Number) - The HTTP status codecontentLength (Number) - The total size in bytes of the download resourceheaders (Map) - The HTTP response headers from the server
If progressCallback is provided, it will be invoked continuously and passed a single argument with the following properties:
contentLength (Number) - The total size in bytes of the download resourcebytesWritten (Number) - The number of bytes written to the file so far
Percentage can be computed easily by dividing bytesWritten by contentLength.
Abort the current download job with this ID. The partial file will remain on the filesystem.
Test app to demostrate the use of the module. Useful for testing and developing the module: