我在我的项目/资产下的 Xcode 中创建的资产文件夹中有文件。我通常可以通过以下方式访问模板 WebView 中的文件:
source={uri:'ICF-Package/ICFPackage/index.html'}
但我无法使用 react-native-fs 将此文件复制到 LibraryDirectoryPath:
RNFS.copyFile('.ICF-Package/ICFPackage/index.html', RNFS.LibraryaDirectory + '/index.html').then((result) => console.log('DONE')).catch((error ) => console.log(error, 'ERROR'));
请帮我解决一下这个。