Guardar Archivo con phonegap

Función para descargar y guardar un archivo con phonegap:

function descargarArchivo(url, achivoNombre) {
    window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, function(fs) {
        var imagePath = fs.root.nativeURL + achivoNombre; // full file path
        var fileTransfer = new FileTransfer();
        fileTransfer.download(url, imagePath, function(entry) {
            console.log(entry.fullPath); // entry is fileEntry object
        }, function(error) {
            console.log(error);
            console.log("Some error");
        });
    });
}

Leave a Reply

Su dirección de correo no se hará público. Los campos requeridos están marcados *

es_PEES