尝试使用“ react-native-fs”移动文件时出错

时间:2020-04-01 02:37:34

标签: react-native react-native-fs

我有一张照片,是从返回到应用程序缓存目录的函数返回的,我需要将其移至另一个文件夹。我正在尝试使用moveFile函数,但没有得到。他说它已经被移动了,但是当我看到它时,这些奇怪的文件就会出现。

我的代码:

  const destPath = RNFS.DocumentDirectoryPath + '/pages';

  captureRef(viewShot, {
    quality: 1,
    width: 1968 / 2,
    height: 2624 / 2,
  })
    .then(res => {
      RNFS.mkdir('pages').then(() => {
        RNFS.moveFile(res, destPath)
          .then(() => {
            console.log('FILE MOVED');
          })
          .catch(() => console.log('Error'));
      });

enter image description here

0 个答案:

没有答案