This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

FTP Client - upload file problem (size zero)

Hi all,

I'm using the CMSIS ftp client to upload a file to a server.. All the process is ok, create the file in the memory card, write some data, connect to the server, start session and put the file... everything is ok.. but, the file on the server is always empty.

When I debug the program and place a breakpoint on the ftp_client_fread function where is the fread function that reads the file from the SD card requested by the ftp client, the fread function is returning a 0 value that is an error (no data readed)... for this reason the file on the server have size zero.

The function receives a correct file handler but can't read enything. If I place in the ftp_client_fread function a full code to open a file and read (to be sure that the handler is ok) fread returns zero:

__weak uint32_t ftp_client_fread (void *file, uint8_t *buf, uint32_t len) {
        // Read block of data from local file in FTP client.
        size_t ret;
        char data[40];

        FILE *f = fopen ("M0:\\hola.txt", "r");
        if (f != NULL){
          ret = fread (data, 10, 1, (FILE *)f);
          fclose (f);
        }

  return (ret);
}

But the file exists and is OK with data.. Also I tested the same with a ramdrive and the same result...

Thanks