Skip to content Skip to sidebar Skip to footer

Open File With Python DirSelector

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

Solution 1:

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.


Post a Comment for "Open File With Python DirSelector"