本文内容:
react-native-fs的简单使用
下载文件(图片、文件、视频、音频)
将文本写入本地 txt
读取txt文件内容
在已有的txt上添加新的文本
删除文件
上传文件 only iOS
安装步骤
第一步:
npm install react-native-fs --save
第二步:
react-native link react-native-fs
OK 即可开始使用(不放心的可以按照github上的对比一下)
简单使用
import RNFS from 'react-native-fs';
下载文件
/*下载文件*/
downloadFile() {
// On Android, use "RNFS.DocumentDirectoryPath" (MainBundlePath is not defined)
// 图片
// const downloadDest = `${RNFS.MainBundlePath}/${((Math.random() * 1000) | 0)}.jpg`;
// const formUrl = 'http://img.kaiyanapp.com/c7b46c492261a7c19fa880802afe93b3.png?imageMogr2/quality/60/format/jpg';
// 文件
// const downloadDest = `${RNFS.MainBundlePath}/${((Math.random() * 1000) | 0)}.zip`