Changed: Extract data archive
This commit is contained in:
parent
97284e7931
commit
464edecc4b
1 changed files with 19 additions and 1 deletions
|
@ -443,7 +443,25 @@ void COperationDialog::downloadData()
|
||||||
|
|
||||||
void COperationDialog::extractDownloadedData()
|
void COperationDialog::extractDownloadedData()
|
||||||
{
|
{
|
||||||
// TODO: implement
|
CConfigFile *config = CConfigFile::getInstance();
|
||||||
|
|
||||||
|
const CServer &server = config->getServer(m_currentServerId);
|
||||||
|
|
||||||
|
m_currentOperation = QApplication::tr("Extract data files required by server %1").arg(server.name);
|
||||||
|
m_currentOperationProgressFormat = QApplication::tr("Extracting %1...");
|
||||||
|
|
||||||
|
CFilesExtractor extractor(this);
|
||||||
|
extractor.setSourceFile(config->getInstallationDirectory() + "/" + server.dataDownloadFilename);
|
||||||
|
extractor.setDestinationDirectory(server.getDirectory());
|
||||||
|
|
||||||
|
if (extractor.exec())
|
||||||
|
{
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
emit done();
|
||||||
}
|
}
|
||||||
|
|
||||||
void COperationDialog::downloadClient()
|
void COperationDialog::downloadClient()
|
||||||
|
|
Loading…
Reference in a new issue