(vl-file-delete filename)
The vl-file-delete function erases the specified file.
filename specifies the name of the file to be deleted as string.
The function returns T, if the deletion was successful; otherwise it returns nil.
Examples
: (vl-file-delete "obsolete.lsp")
nil
: (vl-file-delete "c:\\obsolete.lsp")
T