我正在做一个反应原生项目。我需要将捕获的图像存储在自定义文件夹中。
我正在为此使用 react native fs 库。我能够在所需目录中创建图像,但无法在我的 iphone 文件目录中看到这些图像。
这是我用来存储图像的代码。
async moveAttachment(capturedImagePath) {
$filePathDir = `${RNFS.DocumentDirectoryPath}/myapp/myfilename`;
$filePath = `${$filePathDir }/myfilename.png`;
return new Promise((resolve, reject) => {
RNFS.mkdir(filePathDir)
.then(() => {
RNFS.moveFile(capturedImagePath, filePath )
.then(() => resolve(dirPictures))
.catch(error => reject(error));
})
.catch(err => reject(err));
});
}
我可以在模拟器的文档目录中看到图像,但在 iPhone > files 目录中看不到。
请帮我解决这个问题。