import RNFS from 'react-native-fs';
var path = RNFS.DocumentDirectoryPath + '/test.txt';
RNFS.writeFile(path, 'Lorem ipsum dolor sit amet', 'utf8')
.then(success => {
console.log('FILE WRITTEN!');
})
.catch(err => {
console.log(err.message);
});
console.log(RNFS.DocumentDirectoryPath)
// /data/data/xxx.xxx.xxx/files/
但是我没有在手机的
/data/xxx.xxx.xxx/files/
目录中找到类似data
的路径/文件但是代码中的条目存在
RNFS.readDir(RNFS.DocumentDirectoryPath).then(result => {
console.log('DocumentDirectoryPath GOT RESULT', result);
});
我想知道电话中
RNFS.DocumentDirectoryPath
的路径是什么? 最佳答案
尝试这种方式
RNFS.readDir(RNFS.DocumentDirectoryPath)
.then((result) => {
console.log('GOT RESULT', result);
})
关于android - 未找到react-native-fs路径?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/59208084/