![]() |
Network Component
Version 6.7
MDK-Professional Middleware for IP Networking
|
Macros | |
#define | FDELETE(fn) fdelete(fn,NULL) |
[code_FTP_Server_FS] More... | |
#define | NET_FTP_SERVER_VBUF_SIZE 0 |
Functions | |
__weak void * | ftp_server_fopen (const char *fname, const char *mode) |
Open a file for reading or writing in FTP server. More... | |
__weak void | ftp_server_fclose (void *file) |
Close a file previously open in FTP server. More... | |
__weak uint32_t | ftp_server_fread (void *file, uint8_t *buf, uint32_t len) |
Read block of data from a file in FTP server. More... | |
__weak uint32_t | ftp_server_fwrite (void *file, const uint8_t *buf, uint32_t len) |
Write block of data to a file in FTP server. More... | |
__weak bool | ftp_server_fdelete (const char *fname) |
Delete a file in FTP server. More... | |
__weak bool | ftp_server_frename (const char *fname, const char *newname) |
Rename a file or directory in FTP server. More... | |
__weak bool | ftp_server_mkdir (const char *path) |
Make a new directory in FTP server. More... | |
__weak bool | ftp_server_rmdir (const char *path) |
Remove an empty directory in FTP server. More... | |
__weak uint32_t | ftp_server_ffind (uint8_t code, char *buf, uint32_t buflen, const char *mask) |
Search the file system directory for matching files. More... | |
#define FDELETE | ( | fn | ) | fdelete(fn,NULL) |
[code_FTP_Server_FS]
Referenced by ftp_server_fdelete().
#define NET_FTP_SERVER_VBUF_SIZE 0 |
Referenced by ftp_server_fopen().
__weak bool ftp_server_mkdir | ( | const char * | path | ) |
Make a new directory in FTP server.
[in] | path | directory path to create. |
__weak bool ftp_server_rmdir | ( | const char * | path | ) |
Remove an empty directory in FTP server.
[in] | path | directory path to remove. |