Home > Mobile >  Exhaustive documentaion for tkinter filedialog.askdirectory
Exhaustive documentaion for tkinter filedialog.askdirectory

Time:08-11

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?

CodePudding user response:

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

  • Related