bitman
bitman

Reputation: 567

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 window to open both, files and directories.

Upvotes: 0

Views: 1896

Answers (1)

Mike Driscoll
Mike Driscoll

Reputation: 33071

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.

Upvotes: 1

Related Questions