From 1b453e2fa509ad508c41ae4e7438718b116aebe0 Mon Sep 17 00:00:00 2001 From: Phil Olynyk Date: Mon, 4 May 2020 19:59:59 -0400 Subject: [PATCH] Always creaste Backup/DATALOG folder before ScanFiles --- oscar/SleepLib/loader_plugins/resmed_loader.cpp | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/oscar/SleepLib/loader_plugins/resmed_loader.cpp b/oscar/SleepLib/loader_plugins/resmed_loader.cpp index 2ae30a9b..7a5dcc05 100644 --- a/oscar/SleepLib/loader_plugins/resmed_loader.cpp +++ b/oscar/SleepLib/loader_plugins/resmed_loader.cpp @@ -284,14 +284,17 @@ int ResmedLoader::Open(const QString & dirpath) // Check DATALOG folder exists and is readable if (!QDir().exists(datalogPath)) { + qDebug() << "Missing DATALOG in" << dirpath; return -1; } m_abort = false; MachineInfo info = newInfo(); - if ( ! parseIdentTGT(path, & info, idmap) ) + if ( ! parseIdentTGT(path, & info, idmap) ) { + qDebug() << "Failed to parse Identification.tgt"; return -1; + } qDebug() << "Info:" << info.series << info.model << info.modelnumber << info.serial; #ifdef IDENT_DEBUG @@ -303,7 +306,7 @@ int ResmedLoader::Open(const QString & dirpath) // Abort if no serial number if (info.serial.isEmpty()) { - qDebug() << "ResMed Data card has no valid serial number in Indentification.tgt"; + qDebug() << "ResMed Data card is missing serial number in Indentification.tgt"; return -1; } @@ -383,6 +386,10 @@ int ResmedLoader::Open(const QString & dirpath) if ( ! dir.exists(strBackupPath)) dir.mkpath(strBackupPath); + QString newpath = backup_path + "DATALOG"; + if ( ! dir.exists(newpath) ) + dir.mkpath(newpath); + if ( ! importing_backups ) { BackupSTRfiles( strpath, path, strBackupPath, info, STRmap ); } else { // get the STR file that is in the BACKUP folder @@ -888,8 +895,9 @@ QString ResmedLoader::Backup(const QString & fullname, const QString & backup_pa return ""; } - QString newpath = backup_path + RMS9_STR_datalog + "/" + yearstr; - !dir.exists(newpath) && dir.mkpath(newpath); + QString newpath = backup_path + "DATALOG" + "/" + yearstr; + if ( ! dir.exists(newpath) ) + dir.mkpath(newpath); newname = newpath+"/"+filename;