Mfunc.FileDelete(FilePattern)
Deletes one or more files.
FilePattern
The name of a single file or a wildcard pattern such as C:\Temp*.tmp. FilePattern is assumed to be in %A_WorkingDir% if an absolute path isn't specified.
To remove an entire folder, along with all its sub-folders and files, use Mfunc.FileRemoveDir.
Can be MfString instance or var containing string.
Throws MfException on error if A_LastError is non-zero then InnerException message is set to the value of A_LastError.
Wrapper for AutoHotkey Docs - FileDelete.
Static method.
To delete a read-only file, first remove the read-only attribute.
For example: Mfunc.FileSetAttrib("-R", "C:\My File.txt").
See Also:AutoHotkey Docs - FileDelete.
Mfunc.FileDelete("C:\temp files\*.tmp")