Deleting A File
Deleting a file is pretty easy , to delete a file you can use the delete method of System.IO
Dim DeleteFile As String
DeleteFile = "C:/users/shim/desktop/test.png"
If System.IO.File.Exists(DeleteFile) = True...