当前位置 : 主页 > 手机开发 > cordova >

Cordova android无法从缓存目录中复制图像

来源:互联网 收集:自由互联 发布时间:2021-06-10
我有一个工作的应用程序拍照,但我想将图片从缓存文件夹复制或移动到另一个文件夹.我不能这样做,它返回错误[对象对象]. 问候 function copiePhoto() {try { var fail = function (err) { alert(err); }
我有一个工作的应用程序拍照,但我想将图片从缓存文件夹复制或移动到另一个文件夹.我不能这样做,它返回错误[对象对象].

问候

function copiePhoto() {
try {
    var fail = function (err) {
        alert(err);
    };
    window.resolveLocalFileSystemURI("file:///storage/emulated/0/Android/data/com.coolappz.capigo/cache/1427968060754.jpg", function (file) {
        window.resolveLocalFileSystemURI("file:///test", function (destination) {
            file.moveTo(destination, "test.jpg");
        }, fail);
    }, fail);
} catch (err) {
    alert("copie : " + err);
}

}

经过几个小时的工作,我做到了:

function recupImage(imageURI) {
    window.resolveLocalFileSystemURI(imageURI, copiePhoto, fail);    
}

function copiePhoto(fileEntry) {
    window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, function(fileSys) { 
        fileSys.root.getDirectory("photos2", {create: true, exclusive: false}, function(dir) { 
                fileEntry.copyTo(dir, fileEntry.name, onCopySuccess, fail); 
            }, fail); 
    }, fail); 
}

function onCopySuccess(entry) {
    alert('image copié dans le chemin : ' + entry.fullPath);
}

function fail(error) {
    alert(error.code);
}
网友评论