:52.248KB : :1 :2022-10-09 14:48:38
QT5 阻塞式封装的FTP组件如果开发者对于本文件有需要的可以参考。
QT5基于socket实现封装的阻塞式FTP组件,包含目录功能,比QT5自带的要好用无数倍。相比其他的第三方刚FTP组件,容错处理更灵活。
class CFtpInterface: public QObject
{
Q_OBJECT
public:
explicit CFtpInterface(QWidget *parent = 0);
~CFtpInterface();
int connectToHost(const QString &host, quint16 port, bool showmsg=true);
int login(const QString &username, const QString &password, bool showmsg=true);
int changeDir(const QString &strDirPath, bool showmsg=true);
int listFile( );
int abort( );
int uploadFile(const QString &strLocFilePath, bool showmsg=true); // 上传文件到服务器端
int downloadFile(const QString &strLocFilePath, bool showmsg=true); // 下载文件
int uploadFileList(QList
int downloadFileList(QList
int deleteFile(const QString &strFileName, bool showmsg=true);
int createDir(const QString &dir, bool showmsg=true);
int deleteDir(const QString &dir, bool showmsg=true);
int renameFile(const QString &oldname, const QString &newname, bool showmsg=true);
bool isConnected();
bool isLoggedIn();
QString errorString();
QMap
QString currentPath() {return m_currentPath;}
int connectToFtp(const QString &host);
private slots:
void ftpCommandFinished(int commandId, bool error);
void addToList(const QUrlInfo &urlInfo);
void updateDTProgress(qint64 readBytes, qint64 totalBytes);
private:
QFtp *m_ftp;
QProgressDialog *m_progress;
QFile *m_file;
int m_retval;
QMap
QString m_currentPath;
QString m_hostIP;
QString m_username;
QString m_password;
};
10-19qt5实现类似qq的通讯工具
10-19qt5图像处理
10-15QT5开发例程
10-13qt5.14.2自制下载器
10-10QT5自学教程(完整目录版).pdf
10-10自定义标题栏(qt+ pyqt5)
10-07QT5开发及实例.rar