Delfile
This function deletes a file.
It returns a status 0 on success or a negative code.
Notes:
System "del"-PATH on Windows and System "rm"-PATH on Unix. It is faster because it does not fork a process.RETURN_VALUE=delFile(PATH)
# Procedure that deletes a log file
Subprog DELETE_LOG_FILE(LOGFILE_NAME, ERR_CODE)
Const Char LOGFILE_NAME()
Variable Integer ERR_CODE
# Delete the file
# The file is supposed to be located in TMP directory on the application server with a tra extension
ERR_CODE=delFile(filpath('TMP',LOGFILE_NAME,'tra'))
End ERR_CODE
| Value | Explanation |
|---|---|
| 0 | Operation succeeded. |
| -20 | File does not exist. |
| -27 | Access denied. |