Name
File.Delete Method
Syntax
oFileObj.Delete [Force]
oFileObjUse: Required
Data Type: File object
A File object.
ForceUse: Optional
Data Type: Boolean
If set to
True, ignores the file’s read-only flag (if it’s on), and deletes the file.
Description
Removes the current file.
Rules at a Glance
The Delete method deletes a file permanently; it does not move it to the Recycle Bin.
If the file is open, the method fails with a “Permission Denied” error.
The default setting for
ForceisFalse.If
Forceis set toFalse, and the file is read-only, the method will fail.
Programming Tips and Gotchas
Unlike the FileSystemObject object’s DeleteFile method, which accepts wildcard characters in the path parameter and can therefore delete multiple files, the Delete method deletes only the single file represented by
oFileObj.As a result of the Delete method, the Files collection object containing
oFileObjis automatically updated, the deleted file is removed from the collection, and the collection count is reduced by one. You shouldn’t try to access the deleted file object again; you should setoFileObjtoNothing.
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Read now
Unlock full access