使用 Python DirSelector 打开文件

发布于 2024-10-26 09:10:12 字数 109 浏览 1 评论 0原文

是否可以使用 Python 的 DirSelector 打开文件(而不是目录)。制作一个 wx.FileSelector 来打开一个目录也可以。

我只需要一个对话框窗口即可打开文件和目录。

is it somehow possible to open a file (instead of a directory) with Python's DirSelector. It's also fine to make a wx.FileSelector to open also a directory.

I just need one dialog window to open both, files and directories.

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

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

发布评论

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

评论(1

当爱已成负担 2024-11-02 09:10:22

您也许可以使用 wx.GenericDirCtrl 来实现此目的,尽管它有点难看。还有纯 python MultiDirDialog 小部件,可以在 wx.lib.agw.multidirdialog 中找到。虽然它现在似乎不支持文件的显示和选择,但由于它是纯Python,您可能可以破解它。

You might be able to use the wx.GenericDirCtrl for this, although it's a little ugly. There's also the pure python MultiDirDialog widget which can be found in wx.lib.agw.multidirdialog. While it doesn't appear to support the display and selection of files now, since it's pure Python, you can probably hack it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文