KT
Size: a a a
KT
AS
AS
AS
void FileListModel::setDirPath(const QString &path)
{
QDir dir(path);
beginResetModel();
fileList = dir.entryList();
fileCount = 0;
endResetModel();
}
KT
AS
KT
AS
AS
AS
AS
KT
AS
ListModel {
id: myModel
}
ListView {
model: myModel
}
AS
KT
AS
AS
KT
AS
KT