mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
Ignore zero-length files and add qWarning messages for ignored files.
This commit is contained in:
parent
4810300c35
commit
aaf5627891
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user