我应该使用哪些反应本机库来访问本地存储在android上的音乐文件

时间:2017-11-09 09:44:08

标签: react-native react-native-fs react-native-sound

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

1 个答案:

答案 0 :(得分:2)

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

我偶然发现了几次使用提供的API常量,例如 MainBundlePath DocumentDirectoryPath ExternalDirectoryPath 等等,除了尝试 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);
});