Re: wxPython FileDialog, select folder

2007-12-22 Thread Tim Roberts
SMALLp <[EMAIL PROTECTED]> wrote: > >Thanks! I've already figured it out from first reply. Now i get selected >directory and i want to get all directories from thin directory. I found >os.listdir but it oly gets names of files and i nedd output with >permisions e.g. -rw-r--r-- 1 pofuk pofuk 10

Re: wxPython FileDialog, select folder

2007-12-20 Thread SMALLp
farsheed wrote: > import wx > def dirchoose(): > 'Gives the user selected path. Use: dirchoose()' > global _selectedDir , _userCancel #you should define > them before > userPath = 'c:/' > app = wx.App() > dialog = wx.DirDialog(None, "Please choose your pr

Re: wxPython FileDialog, select folder

2007-12-20 Thread farsheed
import wx def dirchoose(): 'Gives the user selected path. Use: dirchoose()' global _selectedDir , _userCancel #you should define them before userPath = 'c:/' app = wx.App() dialog = wx.DirDialog(None, "Please choose your project directory:",\

Re: wxPython FileDialog, select folder

2007-12-20 Thread SMALLp
Chris Mellon wrote: > On Dec 20, 2007 3:19 PM, SMALLp <[EMAIL PROTECTED]> wrote: >> How can i select folder either with wx.FileDialog or with any other. I >> managed to fine only how to open files but I need to select folder to >> get files from all sub folders. >> > > > There's a separate di

Re: wxPython FileDialog, select folder

2007-12-20 Thread Chris Mellon
On Dec 20, 2007 3:19 PM, SMALLp <[EMAIL PROTECTED]> wrote: > How can i select folder either with wx.FileDialog or with any other. I > managed to fine only how to open files but I need to select folder to > get files from all sub folders. > There's a separate dialog, wx.DirDialog. -- http://m

wxPython FileDialog, select folder

2007-12-20 Thread SMALLp
How can i select folder either with wx.FileDialog or with any other. I managed to fine only how to open files but I need to select folder to get files from all sub folders. Thanks in advance! -- http://mail.python.org/mailman/listinfo/python-list