Static Public Member Functions | |
static QString | cdUpUntilExists (QString path) |
Moves upwards the path until it finds the path that exists. More... | |
static Qt::CaseSensitivity | comparisonSensitivity () |
static bool | containsPath (const QStringList &candidates, const QString &path) |
Uses QFileInfo::operator== to see if 'path' is on 'candidates' list. More... | |
static QByteArray | md5 (const QString &path) |
static bool | rmAllFiles (const QString &dirPath, const QStringList &nameFilters=QStringList()) |
Deletes all files in specified directory. More... | |
Definition at line 31 of file fileutils.h.
|
static |
Moves upwards the path until it finds the path that exists.
Definition at line 45 of file fileutils.cpp.
|
static |
Uses QFileInfo::operator== to see if 'path' is on 'candidates' list.
Definition at line 69 of file fileutils.cpp.
|
static |
Deletes all files in specified directory.
Attempts to delete all files it can. If one file cannot be deleted then this method will proceed to the next one until all files are iterated over. Failure to delete even one file will result in 'false' being returned.
dirPath | Path to the directory. |
nameFilters | Filters as in QDir::setNameFilters(). |
filters | QDir::Filter |
Definition at line 79 of file fileutils.cpp.