FIle copy不在cordova工作

时间:2014-12-13 05:30:06

标签: javascript android file cordova cordova-plugins

在我的 cordova(v 3.3)应用程序中,我使用 copyTo 将副本文件从一个目录复制到sdcard中的另一个目录。有段时间它工作正常一段时间它不起作用。 这是我用来将文件从一个目录复制到另一个目录的源。

window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, function gotFS(fileSystem) {
         var root = fileSystem.root.fullPath;
         console.log(skiTemplateFileName);
         alert(root);

         var fails = function(err) { alert(err.code);}
            window.resolveLocalFileSystemURI(root+"/"+TEMPLATE_DIRECTORY+""+TemplateFileName, function(file) {
               window.resolveLocalFileSystemURI(root+"/"+PDF_DIRECTORY, function(destination) {
                         file.copyTo(destination,randomFileName);
                         alert("File Download Successfully");
               },fails)
            },fails);
     }, function fail(e){

     });

复制文件第一次仅显示文件下载成功时。对于,下次仅显示根警报

注意:在nexus 7中,三星标签4(v4.4.2)设备运行良好时会出现此问题。

请指导解决此问题。

0 个答案:

没有答案