gpt4 book ai didi

python - 使用 Python 2.7 浏览 Windows 目录 GUI

转载 作者:太空狗 更新时间:2023-10-30 02:13:21 24 4
gpt4 key购买 nike

我正在使用带有 Python 2.7.2 和 Tkinter GUI 工具包的 Windows XP。我想构建一个简单的 GUI,它有一个文本字段和“浏览”按钮,可以通过 C:\(就像 Windows 资源管理器)这样的目录选择一个文件。所选文件将显示在 GUI 的文本字段中。希望这足以描述。

最佳答案

我还有一些东西可能对你有帮助:

    ## {{{ http://code.activestate.com/recipes/438123/ (r1)
# ======== Select a directory:

import Tkinter, tkFileDialog

root = Tkinter.Tk()
dirname = tkFileDialog.askdirectory(parent=root,initialdir="/",title='Please select a directory')
if len(dirname ) > 0:
print "You chose %s" % dirname


# ======== Select a file for opening:
import Tkinter,tkFileDialog

root = Tkinter.Tk()
file = tkFileDialog.askopenfile(parent=root,mode='rb',title='Choose a file')
if file != None:
data = file.read()
file.close()
print "I got %d bytes from this file." % len(data)


# ======== "Save as" dialog:
import Tkinter,tkFileDialog

myFormats = [
('Windows Bitmap','*.bmp'),
('Portable Network Graphics','*.png'),
('JPEG / JFIF','*.jpg'),
('CompuServer GIF','*.gif'),
]

root = Tkinter.Tk()
fileName = tkFileDialog.asksaveasfilename(parent=root,filetypes=myFormats ,title="Save the image as...")
if len(fileName ) > 0:
print "Now saving under %s" % nomFichier
## end of http://code.activestate.com/recipes/438123/ }}}

这是我从中获取的网站:http://code.activestate.com/recipes/438123-file-tkinter-dialogs/

关于python - 使用 Python 2.7 浏览 Windows 目录 GUI,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9491195/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com