1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
#include <uibase/filesystemutilities.h>
#include <QDir>
#include <QFileInfo>
#include <QRegularExpression>
#include <QString>
namespace MOBase
{
bool fixDirectoryName(QString& name)
{
QString temp = name.simplified();
while (temp.endsWith('.'))
temp.chop(1);
temp.replace(QRegularExpression(R"([<>:"/\\|?*])"), "");
static QString invalidNames[] = {"CON", "PRN", "AUX", "NUL", "COM1", "COM2",
"COM3", "COM4", "COM5", "COM6", "COM7", "COM8",
"COM9", "LPT1", "LPT2", "LPT3", "LPT4", "LPT5",
"LPT6", "LPT7", "LPT8", "LPT9"};
for (unsigned int i = 0; i < sizeof(invalidNames) / sizeof(QString); ++i) {
if (temp == invalidNames[i]) {
temp = "";
break;
}
}
temp = temp.simplified();
if (temp.length() >= 1) {
name = temp;
return true;
} else {
return false;
}
}
QString sanitizeFileName(const QString& name, const QString& replacement)
{
QString new_name = name;
// Remove characters not allowed by Windows
new_name.replace(QRegularExpression("[\\x{00}-\\x{1f}\\\\/:\\*\\?\"<>|]"),
replacement);
// Don't end with a period or a space
// Don't be "." or ".."
new_name.remove(QRegularExpression("[\\. ]*$"));
// Recurse until stuff stops changing
if (new_name != name) {
return sanitizeFileName(new_name);
}
return new_name;
}
bool validFileName(const QString& name)
{
if (name.isEmpty()) {
return false;
}
if (name == "." || name == "..") {
return false;
}
return (name == sanitizeFileName(name));
}
QString resolveFileCaseInsensitive(const QString& path)
{
#ifdef _WIN32
return QDir::cleanPath(path);
#else
const QFileInfo info(path);
if (info.exists()) {
return info.absoluteFilePath();
}
QDir dir(info.path());
if (!dir.exists()) {
return QDir::cleanPath(path);
}
const QString target = info.fileName();
const QStringList entries =
dir.entryList(QDir::Files | QDir::Readable | QDir::Hidden | QDir::System);
for (const QString& entry : entries) {
if (entry.compare(target, Qt::CaseInsensitive) == 0) {
return dir.absoluteFilePath(entry);
}
}
return QDir::cleanPath(path);
#endif
}
} // namespace MOBase
|