我想删除扩展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)
});