我希望能够删除应用程序中存储的Cookie /历史记录,例如:
我尝试了一些代码片段但似乎没有工作,这里有一个例子:
(1)
For Each element In Directory.GetFiles(Environment.GetFolderPath(Environment.SpecialFolder.Cookies))
Dim deletecookies As New FileInfo(element)
deletecookies.Delete()
Next
只是想知道是否有人能够做到这一点?
感谢您的帮助。