清理safari Cookies(clear.safariCookies)
函数
clear.safariCookies()
说明
用于清理 safari 浏览器的 cookies
示例
clear.safariCookies() --清理cookies
local path = app.dataPath("com.apple.mobilesafari")
if path and path ~= "" and path:find("/var/") then --查找是否有 /var/ 路径 预防 直接执行 rm -rf /*
os.execute(string.format("rm -rf %s/*" ,path)) --清除应用沙盒数据
end