我需要检查文件夹中的文件存在,如下所示:
file:///android_asset/contents/my.html
我尝试过使用react-native-filesystem插件
componentWillMount () {
async function checkIfFileExists() {
const fileExists = await FileSystem.fileExists('file:///android_asset/contents/my.html')
console.log(`file exists: ${fileExists}`)
}
}
我确定my.html文件存在,但我在fileExists中出错。 有人知道如何正确检查吗?
答案 0 :(得分:2)
尝试使用react-native-fs
。
看起来它们可以满足您的需求:https://github.com/johanneslumpe/react-native-fs#existsassetsfilepath-string-promiseboolean