mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10:44 +00:00
Backup either tgt or json Ident file
This commit is contained in:
parent
024c0daf49
commit
83f80f44d2
@ -451,11 +451,22 @@ int ResmedLoader::Open(const QString & dirpath)
|
|||||||
|
|
||||||
|
|
||||||
// Copy Identification files to backup folder
|
// Copy Identification files to backup folder
|
||||||
QFile backupFile(backup_path + RMS9_STR_idfile + STR_ext_TGT);
|
QString idfile_ext;
|
||||||
|
if (QFile(importPath+RMS9_STR_idfile+STR_ext_TGT).exists()) {
|
||||||
|
idfile_ext = STR_ext_TGT;
|
||||||
|
}
|
||||||
|
else if (QFile(importPath+RMS9_STR_idfile+STR_ext_JSON).exists()) {
|
||||||
|
idfile_ext = STR_ext_JSON;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
idfile_ext = ""; // should never happen...
|
||||||
|
}
|
||||||
|
|
||||||
|
QFile backupFile(backup_path + RMS9_STR_idfile + idfile_ext);
|
||||||
if (backupFile.exists())
|
if (backupFile.exists())
|
||||||
backupFile.remove();
|
backupFile.remove();
|
||||||
if (!QFile::copy(importPath + RMS9_STR_idfile + STR_ext_TGT, backup_path + RMS9_STR_idfile + STR_ext_TGT))
|
if ( ! QFile::copy(importPath + RMS9_STR_idfile + idfile_ext, backup_path + RMS9_STR_idfile + idfile_ext))
|
||||||
qWarning() << "Could not copy" << importPath + RMS9_STR_idfile + STR_ext_TGT << "to backup" << backupFile.fileName();
|
qWarning() << "Could not copy" << importPath + RMS9_STR_idfile + idfile_ext << "to backup" << backupFile.fileName();
|
||||||
|
|
||||||
backupFile.setFileName(backup_path + RMS9_STR_idfile + STR_ext_CRC);
|
backupFile.setFileName(backup_path + RMS9_STR_idfile + STR_ext_CRC);
|
||||||
if (backupFile.exists())
|
if (backupFile.exists())
|
||||||
|
Loading…
Reference in New Issue
Block a user