shared: FileSaver: addFile(): Consider fillExistingContentless
This commit is contained in:
parent
5c899af26f
commit
5272365e5a
@ -25,10 +25,22 @@ SaveFileResult FileSaver::addFile(QString path)
|
|||||||
QString absPath = info.absoluteFilePath();
|
QString absPath = info.absoluteFilePath();
|
||||||
|
|
||||||
auto mtime = info.lastModified().toSecsSinceEpoch();
|
auto mtime = info.lastModified().toSecsSinceEpoch();
|
||||||
if(this->dbService->fileExistsInDatabase(absPath, mtime))
|
|
||||||
|
bool exists = false;
|
||||||
|
if(this->fileSaverOptions.fillExistingContentless)
|
||||||
|
{
|
||||||
|
exists = this->dbService->fileExistsInDatabase(absPath, mtime, 'c');
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
exists = this->dbService->fileExistsInDatabase(absPath, mtime);
|
||||||
|
}
|
||||||
|
|
||||||
|
if(exists)
|
||||||
{
|
{
|
||||||
return SKIPPED;
|
return SKIPPED;
|
||||||
}
|
}
|
||||||
|
|
||||||
return saveFile(info);
|
return saveFile(info);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user