PhoneGap FileTransfer.download期望与FileSystem提供的路径不同

时间:2014-04-04 16:59:14

标签: android cordova phonegap-plugins file-transfer android-file

我正在将文件下载到本地文件系统。我可以通过fileSystem.root.getFile成功创建空文件,但fileTransfer.download使用FILE_NOT_FOUND_ERR失败,即使它使用相同的路径。

问题是我的文件是在//sdcard/MyDir/test.pdf创建的(我使用adb shell确认)但fileEntry返回了一条路径,没有 sdcard://MyDir/test.pdf。 fileTransfer.download因此路径失败。它也失败了相对路径MyDir/test.pdf

如果我使用' sdcard'硬编码完整路径在它我可以避免FILE_NOT_FOUND_ERR(具体来说,在FileTransfer.java中resourceApi.mapUriToFile调用成功)但是我得到一个CONNECTION_ERR并且控制台显示"文件插件不能代表下载路径" 。 (在FileTransfer.java中,filePlugin.getEntryForFile调用返回null。我认为它不喜欢路径中的sdcard'。

有没有更好的方法在fileTransfer.download中指定目标路径?

var downloadUrl = "http://mysite/test.pdf";
var relativeFilePath = "MyDir/test.pdf";  // using an absolute path also does not work

window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, function (fileSystem) {
   fileSystem.root.getFile(relativeFilePath, { create: true }, function (fileEntry) {
      console.log(fileEntry.fullPath);  // outputs: "//MyDir/test.pdf"

      var fileTransfer = new FileTransfer();
      fileTransfer.download(
         downloadUrl,

         /********************************************************/
         /* THE PROBLEM IS HERE */
         /* These paths fail with FILE_NOT_FOUND_ERR */
         //fileEntry.fullPath,      // this path fails. it's "//MyDir/test.pdf"
         //relativeFilePath,        // this path fails. it's "MyDir/test.pdf"

         /* This path gets past the FILE_NOT_FOUND_ERR but generates a CONNECTION_ERR */
         "//sdcard/MyDir/test.pdf"
         /********************************************************/

         function (entry) {
            console.log("Success");
         },
         function (error) {
            console.log("Error during download. Code = " + error.code);
         }
      );
   });
});

如果有所不同,我会使用Android SDK模拟器。

1 个答案:

答案 0 :(得分:12)

我能够通过使用文件路径的URI来解决这个问题。 (我还根据@Regent的评论删除了对fileSystem.root.getFile的不必要的调用。)

var downloadUrl = "http://mysite/test.pdf";
var relativeFilePath = "MyDir/test.pdf";  // using an absolute path also does not work

window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, function (fileSystem) {
   var fileTransfer = new FileTransfer();
   fileTransfer.download(
      downloadUrl,

      // The correct path!
      fileSystem.root.toURL() + '/' + relativeFilePath,

      function (entry) {
         console.log("Success");
      },
      function (error) {
         console.log("Error during download. Code = " + error.code);
      }
   );
});