2

我正在使用一个 react-native 项目,我想将 android 内资产中某个文件夹的内容复制到 RNFS.DocumentDirectoryPath。如何执行此操作?

我使用了属性 copyFileAssets()。

 copyfile() {
    RNFS.copyFileAssets('/ICF-Package', RNFS.DocumentDirectoryPath + '/ICFPackage').then((result) => console.log('DONE')).catch((error) => console.log(error, 'ERROR'));
  };

  I'm getting the following error:

错误:无法打开资产“/ICF-Package”

4

1 回答 1

0

你的代码是正确的。但是,它看起来像是/ICF-Package一个文件夹或其他东西,而不是文件。copyFileAssets只能复制文件,但不能复制文件夹(及其内容)

于 2021-11-20T14:23:41.807 回答