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

时间:2017-11-09 08:32:41

标签: react-native react-native-fs

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

以下是代码:

temp = pandas.DataFrame(data, columns = X_test.columns)

我正在获取MainBundlePath的路径文件,但没有本地存储的任何其他文件/文件夹。

2 个答案:

答案 0 :(得分:2)

我有同样的问题。我认为你必须使用export class Order { status: string; constructor(obj?: any) { this.status = obj && obj.status || ''; } public isNew(): boolean { return status == 'NEW'; } } this.http.get('url') .map(response => response.json()) .subscribe(order => { const new_order = new Order(order); }); ,因为你没有对MainBundle的完全访问权限。

答案 1 :(得分:2)

回答我自己的问题。我终于能够使用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);
});