mirror of
https://github.com/oguzhaninan/Stacer.git
synced 2026-04-21 15:07:39 -04:00
18 lines
268 B
C++
18 lines
268 B
C++
#include "apt_source_tool.h"
|
|
|
|
bool AptSourceTool::checkSourceRepository()
|
|
{
|
|
QDir sourceList("/etc/apt/sources.list.d");
|
|
|
|
bool isExists = sourceList.exists();
|
|
|
|
return isExists;
|
|
}
|
|
|
|
QFileInfoList AptSourceTool::getSourceList()
|
|
{
|
|
QDir aptSourceList();
|
|
}
|
|
|
|
|