mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 01:09:50 +00:00
parent
2de0cd6e25
commit
a8ca0de9f8
1 changed files with 3 additions and 1 deletions
|
@ -1193,16 +1193,18 @@ void COperationDialog::deleteComponentsDownloadedFiles()
|
|||
QDir dir(path);
|
||||
|
||||
QStringList filter;
|
||||
filter << "*.log";
|
||||
filter << "*.7z";
|
||||
filter << "*.bnp";
|
||||
filter << "*.zip";
|
||||
filter << "*.part";
|
||||
filter << "ryzom_installer_uninstalling_old_client";
|
||||
|
||||
QStringList files = dir.entryList(filter, QDir::Files);
|
||||
|
||||
foreach(const QString &file, files)
|
||||
{
|
||||
if (!QFile::remove(file))
|
||||
if (!QFile::remove(dir.filePath(file)))
|
||||
{
|
||||
qDebug() << "Unable to delete" << file;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue