QString dir = QDir::currentPath();
fmodel.setRootPath(dir); //只有这个在树形列表中不起作用。
treeView.setRootIndex(fmodel.index(dir)); //加上这个设置才会在显示中起作用。
QString dir = QDir::currentPath();
fmodel.setRootPath(dir); //只有这个在树形列表中不起作用。
treeView.setRootIndex(fmodel.index(dir)); //加上这个设置才会在显示中起作用。