Hello !
I have a simple cUrl command that i need to code in a Qt app:
curl -u user:pass -F "filename=test.txt" -F "fname=@foo.txt" http://www.myserver.com/fileupload.htm

(Not that i know much of cUrl other then it can do MUCH more :-) )

So this should fill out a form with a "test.txt" and upload a file while providing basic user/pass credentials.

Could i do this whith built-in Qt functions or do i need to run the cUrl command line binary OR to use the cUrl library ?

Any help is really appreciated :-)

Greetings,

Nils