mirror of
https://github.com/QRouland/UTPass.git
synced 2026-01-10 19:36:57 +00:00
Add delete password store feature
This commit is contained in:
24
plugins/Pass/jobs/rmjob.cpp
Normal file
24
plugins/Pass/jobs/rmjob.cpp
Normal file
@@ -0,0 +1,24 @@
|
||||
#include "rmjob.h"
|
||||
|
||||
RmJob::RmJob(QString path):
|
||||
m_path(path)
|
||||
{
|
||||
this->setObjectName("RmJob");
|
||||
}
|
||||
|
||||
|
||||
void RmJob::run()
|
||||
{
|
||||
auto info = QFileInfo(this->m_path);
|
||||
if (info.isFile()) {
|
||||
auto file = QFile(this->m_path);
|
||||
file.remove();
|
||||
emit resultReady(false);
|
||||
} else if (info.isDir()) {
|
||||
auto dir = QDir(this->m_path);
|
||||
dir.removeRecursively();
|
||||
emit resultReady(false);
|
||||
} else {
|
||||
emit resultReady(true);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user