ferdianarief commented on PR #566: URL: https://github.com/apache/cordova-plugin-file/pull/566#issuecomment-2088222349
thanks @breautek for quick response,  copying file is unseccessful, and this is my code window.resolveLocalFileSystemURL(docPath,function (fileEntry) { console.log(JSON.stringify(fileEntry)); window.resolveLocalFileSystemURL(cordova.file.dataDirectory,function (directory) { console.log(JSON.stringify(directory)) fileEntry.moveTo(directory, newFileName,function(){ alert('Successful Copy!'); }, function() { alert('Copying Unsuccessful '); }); },null); }, null); -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org For additional commands, e-mail: issues-h...@cordova.apache.org