Newer
Older
AutoCalibration / utils / DownloadFileUtil.h
tanyue on 30 Jun 393 bytes 20250630 初始提交
#ifndef DOWNLOADFILEUTIL_H
#define DOWNLOADFILEUTIL_H

#include <QString>
#include <QFile>
#include <QDir>

#include "SettingConfig.h"

class DownloadFileUtil
{
public:
    DownloadFileUtil();

    bool downloadFileLocal(QString sourcePath, QString destPathName, int& errCode);
    bool uploadFileLocal(QString localFile, QString remoteFileUrl, int& errCode);
};

#endif // DOWNLOADFILEUTIL_H