mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Update viatom_loader.cpp - Remove filename extension
This commit is contained in:
parent
3954d9ac3a
commit
78f5e3fc90
@ -314,6 +314,10 @@ bool ViatomFile::ParseHeader()
|
|||||||
QDateTime data_timestamp = QDateTime(QDate(year, month, day), QTime(hour, min, sec));
|
QDateTime data_timestamp = QDateTime(QDate(year, month, day), QTime(hour, min, sec));
|
||||||
|
|
||||||
QString date_string = QFileInfo(m_file).fileName().section("_", -1); // Strip any SleepU_ etc. prefix.
|
QString date_string = QFileInfo(m_file).fileName().section("_", -1); // Strip any SleepU_ etc. prefix.
|
||||||
|
|
||||||
|
int lastPoint = date_string.lastIndexOf("."); // Added to strip off any filename extension
|
||||||
|
date_string = date_string.left(lastPoint);
|
||||||
|
|
||||||
QString format_string = "yyyyMMddHHmmss";
|
QString format_string = "yyyyMMddHHmmss";
|
||||||
if (date_string.contains(":")) {
|
if (date_string.contains(":")) {
|
||||||
format_string = "yyyy-MM-dd HH:mm:ss";
|
format_string = "yyyy-MM-dd HH:mm:ss";
|
||||||
|
Loading…
Reference in New Issue
Block a user