tonprofde_math Posted May 26, 2005 Posted May 26, 2005 hi, veiled I want to make a programe which removes the cookies the files in temp and tempory Internet files. but there are folder in tempoy internet files of which i don't know her name how all delete in folder (files and FOLDERS)
eJan Posted June 11, 2005 Posted June 11, 2005 In my case that will be: $Dir = @UserProfileDir & "\Local Settings\Temporary Internet Files" _DirRemoveContents($Dir) MsgBox(262144, "Complete", "Temporary Internet Files cleaned") Func _DirRemoveContents($sPath) Local $sPattern Local $sFile Local $hFile If StringRight($sPath, 1) <> "\" Then $sPath = $sPath & "\" $sPattern = $sPath & "*.*" If Not FileExists($sPath) Then Return 0 FileDelete($sPattern) $hFile = FileFindFirstFile($sPattern) If @error Then Return 0 While 1 $sFile = FileFindNextFile($hFile) If @error Then ExitLoop If $sFile <> "." And $sFile <> ".." Then If StringInStr( FileGetAttrib($sPath & $sFile), "D") Then DirRemove($sPath & $sFile, 1) EndIf EndIf WEnd FileClose($hFile) Return 1 EndFuncWhere all of my Temporary Internet Files and cookies are stored into "Temporary Internet Files" folder without subfolders (WinXP SP2).
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now