cordova-file-plugin无法从扩展的SD卡中删除图像

时间:2017-03-09 15:00:18

标签: android cordova ionic-framework

我想删除扩展SD卡上的图像,我可以删除设备存储上的图像,但我无法删除扩展SD卡上的图像。

这是我的代码:

var url = "file:///storage/0403-0201/Instamotion/vx_2/closed/W0LPD9EC5G1117912_image_1.jpg";

window.resolveLocalFileSystemURL(url, function(file) {

console.log(file)

file.remove(function() {

  console.log(url + " deleted");

}, function(error) {

  console.log(error);

});

}, function(error) {

  console.log(error)

});

0 个答案:

没有答案