CommandDelete: Bugfix: Deleted existing instead of non-existing files
This commit is contained in:
parent
95a650dd30
commit
6ac7c199fb
@ -20,7 +20,7 @@ int CommandDelete::removeNonExistent(bool verbose, bool dryRun, QString pattern)
|
|||||||
if(!dryRun)
|
if(!dryRun)
|
||||||
{
|
{
|
||||||
QFileInfo fileInfo(file.absPath);
|
QFileInfo fileInfo(file.absPath);
|
||||||
if(fileInfo.exists())
|
if(!fileInfo.exists())
|
||||||
{
|
{
|
||||||
if(this->dbService->deleteFile(file.absPath))
|
if(this->dbService->deleteFile(file.absPath))
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user