2

我想访问和运行本地存储在 android 和 ios 设备上的音乐文件。我尝试使用 react-native-fs 但无法访问。那么有没有其他更好的库可以使用它。

4

1 回答 1

3

回答我自己的问题。我终于能够使用react-native-fs库在 react-native 中访问音乐文件 /(或任何存储在 android 设备上的文件)。

除了尝试真正需要的ExternalStorageDirectoryPath之外,我偶然发现了很多次使用提供的 API 常量,例如MainBundlePathDocumentDirectoryPathExternalDirectoryPath等等。

下面是代码(由 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);
});
于 2017-11-19T14:08:36.650 回答