如何使用 react-native-fs 库访问文件和文件夹

How to access files and folders using react-native-fs library

我正在使用 react-native-fs 访问文件系统。但是我无法访问 ios.

中的文件

下面是代码:

RNFS.readDir(RNFS.MainBundlePath)
.then((result) => {
    console.log('Got result', result);
    return Promise.all([RNFS.stat(result[0].path), result[0].path]);
})
    .then((statResult) => {
        console.log('stat result',statResult);
        if(statResult[0].isFile()){
            return RNFS.readFile(statResult[1], 'utf8');
        }
        return 'no file';
    })
        .then((contents) => {
            console.log('Got Contents',contents);
        })
.catch((err) => {
    console.log(err.message, err.code);
})

我正在获取 MainBundlePath 的路径文件,但不是本地存储的任何其他 files/folders。

我遇到了同样的问题。我认为您必须使用 "RNFS.DocumentDirectoryPath",因为您没有对 MainBundle 的完全访问权限。

回答我自己的问题。我终于能够使用 react-native-fs 库访问存储在 android 上的任何文件。

已尝试 ExternalStorageDirectoryPath,如给定常量列表中所示。

下面是代码(由 react-native-fs git repo 提供):

RNFS.readDir(RNFS.ExternalStorageDirectoryPath)
.then((result) => {
console.log('GOT RESULT', result);
return Promise.all([RNFS.stat(result[0].path), result[0].path]);
})
.then((statResult) => {
if (statResult[0].isFile()) {
return RNFS.readFile(statResult[1], 'utf8');
}
return 'no file';
})
.then((contents) => {
console.log(contents);
})
.catch((err) => {
console.log(err.message, err.code);
});