over:文件存在性校验功能完成。

This commit is contained in:
2025-11-08 21:51:42 +08:00
parent f8bbf02e04
commit d209d64061
7 changed files with 83 additions and 30 deletions

View File

@@ -12,8 +12,8 @@ struct PropertyData {
QString uuid;
QString command;
QString userAction;
QString path;
QString properC;
QString localPath;
QString remotePath;
qint32 state;
qint32 properE;
};
@@ -40,7 +40,7 @@ struct InfoMsg {
for (auto it = mapData.constBegin(); it != mapData.constEnd(); ++it) {
data << it.key();
data << it.value().uuid << it.value().command << it.value().userAction
<< it.value().path << it.value().properC << it.value().state << it.value().properE;
<< it.value().localPath << it.value().remotePath << it.value().state << it.value().properE;
}
}
@@ -62,8 +62,8 @@ struct InfoMsg {
QString key;
PropertyData prop;
data >> key;
data >> prop.uuid >> prop.command >> prop.userAction >> prop.path
>> prop.properC >> prop.state >> prop.properE;
data >> prop.uuid >> prop.command >> prop.userAction >> prop.localPath
>> prop.remotePath >> prop.state >> prop.properE;
mapData.insert(key, prop);
}
}