ftp_nb_fput Stores a file from an open file to the FTP server (non-blocking) &reftitle.description; intftp_nb_fput resourceftp_stream stringremote_file resourcehandle intmode intstartpos0 ftp_nb_fput uploads the data from a file pointer to a remote file on the FTP server. The difference between this function and the ftp_fput is that this function uploads the file asynchronously, so your program can perform other operations while the file is being uploaded. &reftitle.parameters; ftp_stream The link identifier of the FTP connection. remote_file The remote file path. handle An open file pointer on the local file. Reading stops at end of file. mode The transfer mode. Must be either FTP_ASCII or FTP_BINARY. startpos The position in the remote file to start uploading to. &reftitle.returnvalues; Returns FTP_FAILED or FTP_FINISHED or FTP_MOREDATA. &reftitle.examples; <function>ftp_nb_fput</function> example ]]> &reftitle.seealso; ftp_nb_put ftp_nb_continue ftp_put ftp_fput