Group: File Management - Library: kernel32
Using the DeleteFile
How to access a file using not its name but an alias (hard link)
BOOL DeleteFile(
LPCTSTR lpFileName // file name
);
DECLARE INTEGER DeleteFile IN kernel32;
STRING lpFileName
lpFileName [in] Pointer to a null-terminated string that specifies the file to be deleted
If the function succeeds, the return value is nonzero
See also: RemoveDirectory, SHFileOperation, DeleteFileTransacted.