从 React Native 中的文本下载 txt 文件
Download txt file from text in React Native
我正在尝试从文本下载 txt 文件,但该功能无法正常工作。
Txt 函数
import RNFS from 'react-native-fs';
const txtDownload = () => {
let path = `${RNFS.DocumentDirectoryPath}/${filename}.txt`;
RNFS.writeFile(path, `Here is text`, 'utf8').then((res) => {
Toast('File saved successfully');
}
).catch((err) => {
Toast(err);
});
}
它returns文件保存成功但我找不到文件
记录路径并检查它试图存储的位置。对我来说,当我尝试存储在 ${RNFS.DocumentDirectoryPath}/help.txt
时,它显示如下位置
/data/user/0/com.sample/files/help.txt
我怀疑您正在查看“文档”文件夹。我不知道你是否可以写入文档文件夹。但它适用于使用 RNFS.DownloadDirectoryPath
.
的下载文件夹
我正在尝试从文本下载 txt 文件,但该功能无法正常工作。
Txt 函数
import RNFS from 'react-native-fs';
const txtDownload = () => {
let path = `${RNFS.DocumentDirectoryPath}/${filename}.txt`;
RNFS.writeFile(path, `Here is text`, 'utf8').then((res) => {
Toast('File saved successfully');
}
).catch((err) => {
Toast(err);
});
}
它returns文件保存成功但我找不到文件
记录路径并检查它试图存储的位置。对我来说,当我尝试存储在 ${RNFS.DocumentDirectoryPath}/help.txt
/data/user/0/com.sample/files/help.txt
我怀疑您正在查看“文档”文件夹。我不知道你是否可以写入文档文件夹。但它适用于使用 RNFS.DownloadDirectoryPath
.