React Native:有没有办法检查文件是否存在于android_asset文件夹中?

时间:2017-04-18 11:33:40

标签: javascript android react-native

我需要检查文件夹中的文件存在,如下所示:

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中出错。 有人知道如何正确检查吗?

1 个答案:

答案 0 :(得分:2)

尝试使用react-native-fs

看起来它们可以满足您的需求:https://github.com/johanneslumpe/react-native-fs#existsassetsfilepath-string-promiseboolean