Re: QFtp appending of files
Does the server support such operation?
Re: QFtp appending of files
AFAIK all servers support this operation(APPE - append to a remote file)
Re: QFtp appending of files
So did you issue the right command to the server (a raw command probably)?
Re: QFtp appending of files
I've tried to send a raw command APPE. But it doesn't work so simple. Should I search an another library for ftp or can I use Qt for this purpose?
Re: QFtp appending of files
I don't think Qt has built in support for APPE, it only supports STOR, afaik.
Re: QFtp appending of files
So, I should search for another library that will support this functionality, or modify Qt sources and recompile.
Re: QFtp appending of files
correct me if i m wrong, but isnt it the server that has to support a particular raw command and not Qt. Qt's job should be just to send a particular command to the server and send the reply back.
Re: QFtp appending of files
Yes. Server supports all commands. Qt support sending of a raw command APPE, but copying is not performed by sending this command.