mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-04 02:00:43 +00:00
PRS1 Handle Empty sdcards property file if backup file
This commit is contained in:
parent
30c9f95537
commit
ffa9f9d8c4
@ -669,8 +669,9 @@ void parseModel(MachineInfo & info, const QString & modelnum)
|
||||
info.series = series;
|
||||
}
|
||||
|
||||
bool PRS1Loader::PeekProperties(const QString & filename, QHash<QString,QString> & props)
|
||||
bool PRS1Loader::PeekProperties(const QString & filePath, QHash<QString,QString> & props)
|
||||
{
|
||||
QString filename = filePath;
|
||||
const static QMap<QString,QString> s_longFieldNames = {
|
||||
// CF?
|
||||
{ "SN", "SerialNumber" },
|
||||
@ -696,7 +697,22 @@ bool PRS1Loader::PeekProperties(const QString & filename, QHash<QString,QString>
|
||||
{ "DFN", "DFileNum" }, // number of .003 files in the D directory
|
||||
{ "VC", "ValidCheck" },
|
||||
};
|
||||
|
||||
|
||||
#if 1
|
||||
// fix enpty PROP.TXT file problem. use PROP.BAK if it exists
|
||||
// Otherwise import will fail.
|
||||
// Just readis bak file instead of prop.txt. No other changes.
|
||||
QFileInfo fi(filename);
|
||||
if (fi.isFile() && fi.size()==0 && fi.suffix().toUpper() == "TXT") {
|
||||
QString newFilePath = fi.absolutePath() + "/" + fi.completeBaseName() + ".BAK";
|
||||
fi = QFileInfo(newFilePath);
|
||||
if (fi.isFile() && fi.size()>0) {
|
||||
filename = newFilePath;
|
||||
}
|
||||
}
|
||||
// END fix enpty PROP.TXT file problem. use PROP.BAK if it exists
|
||||
#endif
|
||||
|
||||
QFile f(filename);
|
||||
if (!f.open(QFile::ReadOnly)) {
|
||||
return false;
|
||||
|
Loading…
Reference in New Issue
Block a user