结合保存和加载对话框的Tkinter文件对话框

时间:2016-07-21 14:39:26

标签: python tkinter

我有一个条目小部件,用户可以在其中输入文件位置,在其下方有一个“保存”按钮和一个“加载”按钮。根据单击的按钮,可以打开条目小部件中指定的文件进行写入或读取。

这一切都很好,花花公子。

现在我想添加一个“浏览”按钮,用户可以单击该按钮打开文件对话框以选择文件。选择文件后,文件名将复制到条目中。从那以后,保存和加载按钮应该可以正常工作。

但是,我无法弄清楚如何让文件对话框同时用于读取文件和写入。我不能使用tkFileDialog.asksaveasfilename,因为如果文件已经存在(如果用户打算“加载”,它应该)并且tkFileDialog.askloadasfilename函数不允许,那将会向用户抱怨用户选择一个尚不存在的文件(如果用户打算“保存”,也应该没问题。)

是否可以创建一个既不显示这些功能的对话框呢?

1 个答案:

答案 0 :(得分:0)

这是你正在寻找的东西:

from tkinter import *
from tkinter.filedialog import *
root = Tk()
root.title("Save and Load")
root.geometry("600x500-400+50")

def importFiles():
    try:
        filenames = askopenfilenames()
        global file
        for file in filenames:
            fileList.insert(END, file)
    except:
        pass

def removeFiles():
    try:
        fileList.delete(fileList.curselection())
    except:
        pass

def openFile():
    try:
        text.delete(END)
        fob = open(file, 'r')
        text.insert(0.0, fob.read())
    except:
        pass

def saveFile():
    try:
        fob = open(file, 'w')
        fob.write(text.get(0.0, 'end-1c'))
        fob.close()
    except:
        pass

listFrame = Frame(root)
listFrame.pack()

sby = Scrollbar(listFrame, orient='vertical')
sby.pack(side=RIGHT, fill=Y)

fileList = Listbox(listFrame, width=100, height=5, yscrollcommand=sby.set)
fileList.pack()

sby.config(command=fileList.yview)

buttonFrame = Frame(root)
buttonFrame.pack()

importButton = Button(buttonFrame, text="Import", command=importFiles)
importButton.pack(side=LEFT)

removeButton = Button(buttonFrame, text="Remove", command=removeFiles)
removeButton.pack(side=LEFT)

openButton = Button(buttonFrame, text="Open", command=openFile)
openButton.pack(side=LEFT)

saveButton = Button(buttonFrame, text="Save", command=saveFile)
saveButton.pack(side=LEFT)

text = Text(root)
text.pack()

root.mainloop()

"我想要一个对话框,它返回一个可用于保存和加载的文件名。"
您可以使用对话框窗口导入文件名;从列表中删除所选文件名(附加功能);打开您选择的文件;最后,写下并保存它们 P.S。:我的代码中可能存在一些错误,但我认为,算法可以解决问题。