Ronn Ross  wrote:

>I'm using Tkinter file selector to get a direcotry path. I'm using:
>
>self.file = tkFileDialog.askdirectory(title="Please select your directory")
>        print file
>
>but all it prints out is:
><type 'file'>
>
>How would I print the directory path?

try doing:

self.filename = tkFileDialog.askopenfilename(title = 'this is a
message',initialdir='./' )

and see what happens

- Hendrik

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to