diff --git a/oscar/SleepLib/common.cpp b/oscar/SleepLib/common.cpp index 55f460b4..3251b815 100644 --- a/oscar/SleepLib/common.cpp +++ b/oscar/SleepLib/common.cpp @@ -415,7 +415,7 @@ bool removeDir(const QString &path) return result; } -void copyPath(QString src, QString dst) +void copyPath(QString src, QString dst, bool overwrite) { QDir dir(src); if (!dir.exists()) @@ -425,7 +425,7 @@ void copyPath(QString src, QString dst) foreach (QString d, dir.entryList(QDir::Dirs | QDir::NoDotAndDotDot)) { QString dst_path = dst + QDir::separator() + d; dir.mkpath(dst_path); - copyPath(src + QDir::separator() + d, dst_path); + copyPath(src + QDir::separator() + d, dst_path, overwrite); } // Files @@ -433,6 +433,9 @@ void copyPath(QString src, QString dst) QString srcFile = src + QDir::separator() + f; QString destFile = dst + QDir::separator() + f; + if (overwrite && QFile::exists(destFile)) { + QFile::remove(destFile); + } if (!QFile::exists(destFile)) { if (!QFile::copy(srcFile, destFile)) { qWarning() << "copyPath: could not copy" << srcFile << "to" << destFile; diff --git a/oscar/SleepLib/common.h b/oscar/SleepLib/common.h index f5f47382..1ef4dee7 100644 --- a/oscar/SleepLib/common.h +++ b/oscar/SleepLib/common.h @@ -74,7 +74,7 @@ struct ValueCount { extern int idealThreads(); -void copyPath(QString src, QString dst); +void copyPath(QString src, QString dst, bool overwrite=false); // Primarily sort by value @@ -157,6 +157,7 @@ const QString STR_MACH_Journal = "Journal"; const QString STR_MACH_Intellipap = "Intellipap"; const QString STR_MACH_Weinmann= "Weinmann"; const QString STR_MACH_FPIcon = "FPIcon"; +const QString STR_MACH_SleepStyle = "SleepStyle"; const QString STR_MACH_MSeries = "MSeries"; const QString STR_MACH_CMS50 = "CMS50"; const QString STR_MACH_ZEO = "Zeo";