使用 Python DirSelector 打开文件
是否可以使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您也许可以使用 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.