Delete files from NSCachesDirectory programmatically

后端 未结 4 2169
南笙
南笙 2020-12-18 04:59

If I downloaded files in NSCachesDirectory programmatically in my app, is it also possible to delete the files programmatically?

4条回答
  •  天命终不由人
    2020-12-18 05:43

    If you want to delete specifically UIWebView cache then this could be helpful:

    for(NSHTTPCookie *cookie in [[NSHTTPCookieStorage sharedHTTPCookieStorage] cookies]) {
         if([[cookie domain] isEqualToString:someNSStringUrlDomain]) {
             [[NSHTTPCookieStorage sharedHTTPCookieStorage] deleteCookie:cookie];
         }
    }
    

提交回复
热议问题