⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tkfiledialog.py

📁 minimal python variant for small footprint apps like embedded apps
💻 PY
字号:
## Instant Python# $Id: tkFileDialog.py,v 1.1.1.1 2000/12/22 01:25:31 jcollins Exp $## tk common file dialogues## this module provides interfaces to the native file dialogues# available in Tk 4.2 and newer.## written by Fredrik Lundh, May 1997.### options (all have default values):## - defaultextension: added to filename if not explicitly given## - filetypes: sequence of (label, pattern) tuples.  the same pattern#   may occur with several patterns.  use "*" as pattern to indicate#   all files.## - initialdir: initial directory.  preserved by dialog instance.## - initialfile: initial file (ignored by the open dialog).  preserved#   by dialog instance.## - parent: which window to place the dialog on top of## - title: dialog title#from tkCommonDialog import Dialogclass _Dialog(Dialog):    def _fixoptions(self):        try:            # make sure "filetypes" is a tuple            self.options["filetypes"] = tuple(self.options["filetypes"])        except KeyError:            pass    def _fixresult(self, widget, result):        if result:            # keep directory and filename until next time            import os            path, file = os.path.split(result)            self.options["initialdir"] = path            self.options["initialfile"] = file        self.filename = result # compatibility        return result## file dialogsclass Open(_Dialog):    "Ask for a filename to open"    command = "tk_getOpenFile"class SaveAs(_Dialog):    "Ask for a filename to save as"    command = "tk_getSaveFile"## convenience stuffdef askopenfilename(**options):    "Ask for a filename to open"    return apply(Open, (), options).show()def asksaveasfilename(**options):    "Ask for a filename to save as"    return apply(SaveAs, (), options).show()# FIXME: are the following two perhaps a bit too convenient?def askopenfile(mode = "r", **options):    "Ask for a filename to open, and returned the opened file"    filename = apply(Open, (), options).show()    if filename:        return open(filename, mode)    return Nonedef asksaveasfile(mode = "w", **options):    "Ask for a filename to save as, and returned the opened file"    filename = apply(SaveAs, (), options).show()    if filename:        return open(filename, mode)    return None# --------------------------------------------------------------------# test stuffif __name__ == "__main__":    print "open", askopenfilename(filetypes=[("all filez", "*")])    print "saveas", asksaveasfilename()

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -