如何有一个目录对话框

发布于 2024-10-04 09:31:17 字数 65 浏览 3 评论 0原文

在 PyQt 中,如何显示一个仅显示和选择目录(而不是文件)的文件浏览器?

如何检索所选目录的名称?

In PyQt, how does one display a file browser that shows and selects only directories (not files)?

And how does one retrieve the name of the selected directory?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

寄人书 2024-10-11 09:31:17

从 QDialog/QWidget 类内部,您应该能够执行以下操作:

file = str(QFileDialog.getExistingDirectory(self, "Select Directory"))

From inside your QDialog/QWidget class, you should be able to do:

file = str(QFileDialog.getExistingDirectory(self, "Select Directory"))
站稳脚跟 2024-10-11 09:31:17

就这么简单:

folderpath = QtWidgets.QFileDialog.getExistingDirectory(self, 'Select Folder')

这里,self 代表父窗口,通常是 QMainWindow 对象。

对于文件对话框同样如此:

filepath = QtWidgets.QFileDialog.getOpenFileName(self, 'Hey! Select a File')

Just as simple as that:

folderpath = QtWidgets.QFileDialog.getExistingDirectory(self, 'Select Folder')

Here, self represents the parent window usually the QMainWindow object.

Similarly for File dialog:

filepath = QtWidgets.QFileDialog.getOpenFileName(self, 'Hey! Select a File')
守望孤独 2024-10-11 09:31:17

在 PyQt6 中,QFileDialog.getExistingDirectory 与 PyQt5 相同,但 QFileDialog.getOpenFileName 的情况发生了变化,它返回一个元组:

from PyQt6.QtWidgets import QFileDialog
file_path, filter_ = QFileDialog.getOpenFileName(self, 'Pick a file')

In PyQt6 QFileDialog.getExistingDirectory is the same as PyQt5, but things change for QFileDialog.getOpenFileName which returns a tuple instead:

from PyQt6.QtWidgets import QFileDialog
file_path, filter_ = QFileDialog.getOpenFileName(self, 'Pick a file')
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文