使用react-native-audio-toolkit React Native如何访问文件

时间:2017-10-08 17:21:54

标签: javascript android react-native react-native-android react-native-ios

所以我可以使用以下代码录制内容

let rec = new Recorder("filename.mp4").record();

// Stop recording after approximately 3 seconds
setTimeout(() => {
  rec.stop((err) => {
    // NOTE: In a real situation, handle possible errors here
    // Play the file after recording has stopped
    new Player("filename.mp4")
      .play()
      .on('ended', () => {
        // Enable button again after playback finishes
        this.setState({disabled: false});
      });
  });
}, 3000);

我可以完美地录制音频,但我可以如何访问,删除或列出像filename.mp4这样的录制文件。这在Android或iOS中保存在哪里?每次更新应用程序或每次重新编译后,这些是否仍然存在。

1 个答案:

答案 0 :(得分:0)

根据react-native-audio-toolkit documentation,您可以使用fsPath属性获取文件。

  

fsPath - 字符串(只读)

     

获取要记录的文件的文件系统路径。可用之后   prepare()调用已成功调用其回调函数。