iOS中无法删除存储文件。以下适用于android,但img每次都会在iOS中显示。
FileSystemStorage.getInstance().deleteRetry(FileSystemStorage.getInstance().getAppHomePath() + "profile.png", 1);
我尝试过以下但是他们也不在模拟器中工作
Storage.getInstance().deleteStorageFile(FileSystemStorage.getInstance().getAppHomePath() + "profile.png");
Storage.getInstance().deleteStorageFile("profile.png");
文件存储如下:
URLImage.createToStorage(placeholderForProfile, "profile.png",au.profileImgUrl + getUserProfileImg, ada);
答案 0 :(得分:0)
FileSystemStorage
和Storage
是两个独立的概念,您将它们混合在一起。
Storage
仅适用于固定名称(不是层次结构,路径等),FileSystemStorage
仅适用于完整路径。
删除存储文件时,这是正确的做法:
Storage.getInstance().deleteStorageFile("profile.png");
如果这对您不起作用,请确保先关闭存储文件并且不使用它。另外,请确保将其正确创建为“配置文件”,并且不使用路径。