21 lines
420 B
C
21 lines
420 B
C
#ifndef FS_TOOLS_H
|
|
#define FS_TOOLS_H
|
|
|
|
#include <QDir>
|
|
#include <QFileInfo>
|
|
#include <QFileInfoList>
|
|
#include <QString>
|
|
#include <QStandardPaths>
|
|
#include <QProcess>
|
|
#include <QNetworkAccessManager>
|
|
#include <QNetworkReply>
|
|
#include <QEventLoop>
|
|
#include <QFile>
|
|
#include <QDebug>
|
|
|
|
void emptyFolder(const QString& path);
|
|
QString checkDirHash(QString path);
|
|
QString checkFileHash(QString pathname);
|
|
|
|
#endif // FS_TOOLS_H
|