我正在使用 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 的路径文件,但没有获取本地存储的任何其他文件/文件夹。