将文件保存在 Documents/Downloads 中
是否可以在文档或下载中使用react-native保存文件? 我正在尝试使用react-native-fs保存pdf文件:
let file = await RNHTMLtoPDF.convert(options)
const destinationPath = RNFS.DocumentDirectoryPath + "/" + fileName + ".pdf"
RNFS.copyFile(file.filePath, destinationPath)
但它保存在根目录中(/data/user/0/com.prodhealth.mobile.Dev/files/TestTest_2022-02-22_2022- 02-22.pdf),普通用户无法访问。
有没有办法直接将其保存在手机内部存储的文档/下载中?我需要该用户可以轻松访问该文件。
Is it possible to save files with react-native inside Documents or Downloads?
I am trying to save a pdf file with react-native-fs:
let file = await RNHTMLtoPDF.convert(options)
const destinationPath = RNFS.DocumentDirectoryPath + "/" + fileName + ".pdf"
RNFS.copyFile(file.filePath, destinationPath)
but it is saved in the root directory (/data/user/0/com.prodhealth.mobile.Dev/files/TestTest_2022-02-22_2022-02-22.pdf) which is not accessible for normal users.
Is there a way to save it directly in Documents/Downloads of internal storage of the phone? I need that user can easily access this file.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你可以使用 react-native -fetch-blob
示例
you can use react-native-fetch-blob
Example
是的,你可以。它对我有用。
Yes, You can. It's working for me.