在linux的home下有张图片名为9.jpg 想上传到smarthome/web/tupian 下
要怎么写呢.我这么写出错了。求指教
QFile *dataFile = new QFile("/home/9.jpg");
dataFile->open(QIODevice::ReadOnly);
QString fileName ="smarthome/web/tupian";
ftp->put(dataFile,fileName);
------解决方案--------------------
1、连接ftp服务器可以成功么?
2、ftp->put(dataFile,fileName);其中fileName应该为服务器下正确的路径。。。