React Native-从ios项目文件夹复制文件

时间:2018-11-06 10:54:26

标签: react-native react-native-ios react-native-fs

我在使用Xcode在my_project / assets下创建的资产文件夹中有文件

我通常可以通过以下方式访问模板WebView中的文件:

source={{uri: './assets/myfolder/index.html'}}

但是我无法使用react-native-fs将此文件复制到DocumentsDirectory:

RNFS.copyFile('./assets/myfolder/index.html', RNFS.DocumentDirectoryPath + '/index.html').then((result) => console.log('DONE')).catch((error) => console.log(error, 'ERROR'));
  

错误:由于没有打开文件“ index.html”,因此无法打开   这样的文件。

在android上,copyFileAssets可以正常工作。

0 个答案:

没有答案