我有一张照片,是从返回到应用程序缓存目录的函数返回的,我需要将其移至另一个文件夹。我正在尝试使用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'));
});