Using VBA, how can I (a) test whether a file exists, and if so, (b) delete it?
|
feedback
|
|
1.) Check here. Basically do this:
I'll leave it to you to figure out the various error handling needed but these are among the error handling things I'd be considering:
2.) How To Delete a File. Look at this. Basically use the Kill command but you need to allow for the possibility of a file being read-only. Here's a function for you:
Again, I'll leave the error handling to you and again these are the things I'd consider:
| ||||
|
feedback
|
|
An alternative way to code Brettski's answer, with which I otherwise agree entirely, might be
Same effect but fewer (well, none at all) variable declarations. The FileSystemObject is a really useful tool and well worth getting friendly with. Apart from anything else, for text file writing it's massively faster than the legacy alternative, which may surprise a few people. (In my experience at least, YMMV). | |||
|
feedback
|
|
set a reference to the Scripting.Runtime library and then use the FileSystemObject:
| |||
|
feedback
|
|
The following can be used to test for the existence of a file, and then to delete it.
| |||
feedback
|
|
You can set a reference to the Scripting.Runtime library and then use the FileSystemObject. It has a DeleteFile method and a FileExists method. See the MSDN article here. | |||
|
feedback
|
|
I'll probably get flamed for this, but what is the point of testing for existence if you are just going to delete it? One of my major pet peeves is an app throwing an error dialog with something like "Could not delete file, it does not exist!"
If the file doesn't exist in the first place, mission accomplished! | ||||
feedback
|
|
In VB its normally Dir to find the directoy of the file. If its not blank then it exists and then use Kill to get rid of the file.
| ||||
|
feedback
|