CommandDelete: Bugfix: Deleted existing instead of non-existing files
这个提交包含在:
父节点
95a650dd30
当前提交
6ac7c199fb
@ -20,7 +20,7 @@ int CommandDelete::removeNonExistent(bool verbose, bool dryRun, QString pattern)
|
||||
if(!dryRun)
|
||||
{
|
||||
QFileInfo fileInfo(file.absPath);
|
||||
if(fileInfo.exists())
|
||||
if(!fileInfo.exists())
|
||||
{
|
||||
if(this->dbService->deleteFile(file.absPath))
|
||||
{
|
||||
|
正在加载...
在新工单中引用
屏蔽一个用户