Kill("C:\%Folder_Name%\FILE_Name.*extension")
Kill("C:\%Folder_Name%\*.*")
System.IO.File.SetAttributes("C:\Windows\Temp\*.*", System.IO.FileAttributes.Normal) ' changes read only files in Windows temporary folder to attribute normal
Kill("C:\Windows\Temp\*.*") " deletes windows temp files
Process.Start("rundll32.exe", "InetCpl.cpl,ClearMyTracksByProcess 8")
Process.Start("rundll32.exe", "InetCpl.cpl,ClearMyTracksByProcess 1")
Process.Start("rundll32.exe", "InetCpl.cpl,ClearMyTracksByProcess 2")
Kill("C:\Nexon\Combat Arms\ & *.TMP")
Kill("C:\Nexon\Combat Arms\*.TMP")
On Error Resume Next (i think thats it)
Kill("C:\Nexon\Combat Arms\*.extention")
Try
Kill("C:\Nexon\Combat Arms\*.TMP")
Catch ex As Exception
msgbox("Failed")
End Try
My.Computer.FileSystem.DeleteDirectory("C:\.........", FileIO.DeleteDirectoryOption.DeleteAllContents)