mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-06-08 08:04:08 +02:00
Replace remaining QFileInfo::exists
This commit is contained in:
parent
a909c1a813
commit
971e188063
1 changed files with 2 additions and 2 deletions
|
@ -151,7 +151,7 @@ private:
|
||||||
for (QStringList::const_iterator i = oldlogs.cbegin(), e = oldlogs.cend(); i != e; ++i) {
|
for (QStringList::const_iterator i = oldlogs.cbegin(), e = oldlogs.cend(); i != e; ++i) {
|
||||||
QString oldlog = cWorkingDir() + *i, oldlogend = i->mid(qstr("log_start").size());
|
QString oldlog = cWorkingDir() + *i, oldlogend = i->mid(qstr("log_start").size());
|
||||||
if (oldlogend.size() == 1 + qstr(".txt").size() && oldlogend.at(0).isDigit() && oldlogend.midRef(1) == qstr(".txt")) {
|
if (oldlogend.size() == 1 + qstr(".txt").size() && oldlogend.at(0).isDigit() && oldlogend.midRef(1) == qstr(".txt")) {
|
||||||
bool removed = QFile(*i).remove();
|
bool removed = QFile(oldlog).remove();
|
||||||
LOG(("Old start log '%1' found, deleted: %2").arg(*i, Logs::b(removed)));
|
LOG(("Old start log '%1' found, deleted: %2").arg(*i, Logs::b(removed)));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -265,7 +265,7 @@ bool DebugModeEnabled = false;
|
||||||
|
|
||||||
void MoveOldDataFiles(const QString &wasDir) {
|
void MoveOldDataFiles(const QString &wasDir) {
|
||||||
QFile data(wasDir + "data"), dataConfig(wasDir + "data_config"), tdataConfig(wasDir + "tdata/config");
|
QFile data(wasDir + "data"), dataConfig(wasDir + "data_config"), tdataConfig(wasDir + "tdata/config");
|
||||||
if (data.exists() && dataConfig.exists() && !QFileInfo(cWorkingDir() + "data").exists() && !QFileInfo(cWorkingDir() + "data_config").exists()) { // move to home dir
|
if (data.exists() && dataConfig.exists() && !QFileInfo::exists(cWorkingDir() + "data") && !QFileInfo::exists(cWorkingDir() + "data_config")) { // move to home dir
|
||||||
LOG(("Copying data to home dir '%1' from '%2'").arg(cWorkingDir(), wasDir));
|
LOG(("Copying data to home dir '%1' from '%2'").arg(cWorkingDir(), wasDir));
|
||||||
if (data.copy(cWorkingDir() + "data")) {
|
if (data.copy(cWorkingDir() + "data")) {
|
||||||
LOG(("Copied 'data' to home dir"));
|
LOG(("Copied 'data' to home dir"));
|
||||||
|
|
Loading…
Add table
Reference in a new issue