如何在主窗口内的pyqt中创建文件夹视图
我正在尝试实现一个文件夹查看器来查看特定路径的结构。这个文件夹视图应该看起来像 PyQT 中的树小部件,我知道文件对话框可以提供帮助,但我需要将它放在我的主窗口中。
我尝试使用 QTreeWidget 实现此目的,并使用递归函数在文件夹内循环,但这太慢了。因为它需要递归大量文件夹。 这是正确的方法吗?或者有一个现成的qt解决方案可以解决这个问题。
检查下图。
I'm trying to implement a folder viewer to view the structure of a specific path. and this folder view should look like a the tree widget in PyQT , i know that the file dialog can help , but i need to have it inside my main window.
i tried to implement this using QTreeWidget and i used a recursed function to loop inside folders, but this is too slow. since it needs to recurse around huge number of folders.
is this the right way to do it? or there is a ready qt solution for this problem.
Check the figure below.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于 PyQt5,我做了这个函数:
然后我这样称呼它:
并且我得到了这个结果:
for PyQt5 I did this function :
then i call it like this :
and i have this result :
使用模型和视图。
Use models and views.