Technical Support
On-Line Manuals
RL-ARM User's Guide
#include <net_config.h> BOOL ftp_fdelete ( U8* fname ); /* Pointer to name of file to delete. */
The ftp_fdelete function deletes the file specified by fname.
The ftp_fdelete function is in the FTP_uif.c module. The prototype is defined in net_config.h.
The ftp_fdelete function returns __TRUE when the file is successfully deleted. It returns __FALSE on failure.
ftp_ffind, ftp_frename
BOOL ftp_fdelete (U8 *fname) { /* Delete a file, return __TRUE on success. */ if (fdelete((char *)fname) == 0) { return (__TRUE); } return (__FALSE); }