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
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
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:",\
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
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