码迷,mamicode.com
首页 > 其他好文 > 详细

pyqt硬盘显示

时间:2014-10-04 17:17:36      阅读:288      评论:0      收藏:0      [点我收藏+]

标签:blog   http   io   ar   sp   2014   art   c   on   

from PyQt4 import QtGui

from PyQt4 import QtCore

 

from PyQt4.QtCore import (QDate, QFile, QFileInfo, QIODevice, QString, QStringList, QDir, QTextStream, Qt, SIGNAL)

 

 

 

 

if __name__ == ‘__main__‘:

 

    import sys

 

    app = QtGui.QApplication(sys.argv)

 

    startDir = QString("")

    startDir = "C:/library/stuff"

 

    filter = QStringList("")

    filter = ("JPG (*.jpg)");

 

 

    model = QtGui.QDirModel()

    model = QtGui.QFileSystemModel()

    model.setFilter(QDir.AllDirs | QDir.NoDotAndDotDot | QDir.AllEntries)

    model.setNameFilters(filter)

    model.setNameFilterDisables(0)

    model.setRootPath(startDir)

 

    tree = QtGui.QTreeView()

    tree.setModel(model)

 

 

    setDir= QtCore.QDir(startDir)

    setDir.setNameFilters(filter)

    tree.setRootIndex(model.index(QtCore.QDir.path(setDir), 0 ))

 

 

    tree.setAnimated(False)

    tree.setIndentation(20)

    tree.setSortingEnabled(True)

 

    tree.setWindowTitle("Dir View")

    tree.resize(640, 480)

    tree.show()

 

    sys.exit(app.exec_())

 如图:bubuko.com,布布扣

pyqt硬盘显示

标签:blog   http   io   ar   sp   2014   art   c   on   

原文地址:http://www.cnblogs.com/mhxy13867806343/p/4006073.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!