Exhaustive documentaion for tkinter filedialog.askdirectory

Question:

I am using tkinter filedialogue.askdirectory() and want to know what options I can enter in. The python documentation just has **options with no description of what options are valid.

In general, I have found tkdocs useful but, for filedialogue they don’t mention any options. Something like Java’s javadocs are really useful because they’re exhaustive.

Does there exist exhaustive documentation for tkinter filedialog? For tkinter in general?

Asked By: MrGorbunov

||

Answers:

The canonical documentation for tk (upon which tkinter is built) can be found here: http://tcl.tk/man/tcl/TkCmd/contents.htm

The documentation for choosing a directory is here: http://tcl.tk/man/tcl/TkCmd/chooseDirectory.htm

Answered By: Bryan Oakley
Categories: questions Tags: , , ,
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.