fileprocessor.h 286 Bytes
#ifndef FILEPROCESSOR_H
#define FILEPROCESSOR_H

#include <QtCore>

class FileProcessor
{
public:
    FileProcessor();
static bool folderExist(const QString &path);
static bool fileExist(const QString &path_file);
static bool detectUSB(QString &usbpath);

};

#endif // FILEPROCESSOR_H