mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-10 01:09:34 +00:00
Changed: Update progress in CFilesCleaner
This commit is contained in:
parent
3a327b4290
commit
8e862a24d9
1 changed files with 14 additions and 0 deletions
|
@ -52,6 +52,8 @@ void CFilesCleaner::setDirectory(const QString &src)
|
|||
|
||||
bool CFilesCleaner::exec()
|
||||
{
|
||||
if (m_listener) m_listener->operationPrepare();
|
||||
|
||||
QDir dir(m_directory);
|
||||
|
||||
// directory doesn't exist
|
||||
|
@ -62,9 +64,21 @@ bool CFilesCleaner::exec()
|
|||
// temporary files
|
||||
QStringList files = dir.entryList(QStringList() << "*.string_cache" << "*.packed_sheets" << "*.packed" << "*.pem", QDir::Files);
|
||||
|
||||
if (m_listener)
|
||||
{
|
||||
m_listener->operationInit(0, files.size());
|
||||
m_listener->operationStart();
|
||||
}
|
||||
|
||||
int filesCount = 0;
|
||||
|
||||
foreach(const QString &file, files)
|
||||
{
|
||||
dir.remove(file);
|
||||
|
||||
if (m_listener) m_listener->operationProgress(filesCount, file);
|
||||
|
||||
++filesCount;
|
||||
}
|
||||
|
||||
// fonts directory is not needed anymore
|
||||
|
|
Loading…
Reference in a new issue