Neither you nor others want mail with live code.
http://www.rondebruin.nl/win/s4/win004.htm
"Be aware that Kill permanently deletes the file. There is no way to "Undo" the delete, the file is not sent to the Windows Recycle Bin(Same for the macro's that use the filesystemobject)."
Sub DeleteExample1()
'You can use this to delete all the files in the folder Test
On Error Resume Next
Kill "C:\Users\Ron\Test\*.*"
On Error GoTo 0
End Sub
You could start your search here to see if something can be done safely. http://www.outlookcode.com/article.aspx?id=67