Shows you how to delete a file without going to the recycle bin permanently
Shows you how to delete a file without going to the recycle bin permanently
Rate Shows you how to delete a file without going to the recycle bin permanently
(1(1 Vote))
On Error Resume Next
Dim strAsk As String
strAsk$ = MsgBox("Are you sure you want to clear all files in your windows\temp folder?", vbQuestion + vbYesNo, "Confirm Delete")
If strAsk$ = vbYes Then
Kill "c:\windows\temp\*.*"
'You can change what is between the quotations to any path you wish
'The (star dot star) can be changed to a filename.
End If
End Sub
Shows you how to delete a file without going to the recycle bin permanently Comments
No comments yet — be the first to post one!
Post a Comment