Sub KillAllFiles()
Dim i As Integer
With Application.FileSearch
.NewSearch
.LookIn = "C:\Excel\Delete These"
.FileType = msoFileTypeAllFiles
.SearchSubFolders = True
If .Execute > 0 Then
For i = 1 To .FoundFiles.Count
Kill .FoundFiles(i)
Next i
End If
End With
End Sub