react-native-fsとreact-native-document pickerを使用して、文書ピッカーから選択したファイルを文書ディレクトリに移動しようとしています。私が間違っているのは何react-native-fsを使用してtmpから文書にファイルを移動
Error: “file name.mp3” couldn’t be moved to “Documents” because either the former doesn't exist, or the folder containing the latter doesn't exist.
:
はしかし、私は以下のエラーを取得しますか?
参考までに、私はiOSを使用しています。
openDocumentPicker() {
DocumentPicker.show({
filetype: ['public.audio'],
},(error,url) => {
console.log(url);
this.saveAudio(url);
});
}
saveAudio(url) {
var destPath = RNFS.DocumentDirectoryPath + '/' + 'name';
RNFS.moveFile(url, destPath)
.then((success) => {
console.log('file moved!');
})
.catch((err) => {
console.log("Error: " + err.message);
});
}