Ignore zero-length files and add qWarning messages for ignored files.

This commit is contained in:
Seeker4 2019-09-16 11:53:27 -07:00
parent 4810300c35
commit aaf5627891

View File

@ -1051,6 +1051,13 @@ int ResmedLoader::scanFiles(Machine * mach, const QString & datalog_path)
// Forget about it if it can't be read. // Forget about it if it can't be read.
if (!fi.isReadable()) { if (!fi.isReadable()) {
qWarning() << fi.fileName() << "is unreadable and has been ignored";
continue;
}
// Skip empty files
if (fi.size() == 0) {
qWarning() << fi.fileName() << "is empty and has been ignored";
continue; continue;
} }