我正在尝试在GUI中实现一个对话框,并希望将所选扩展名附加到输入文件名的末尾:
我遇到了以下几个主题:
tkinter: How can I get the users choice of filetype in the asksaveasfilename-dialog? https://mail.python.org/pipermail/python-list/2002-June/173039.html
这似乎意味着来自tkinter的asksaveasfilename
工具目前没有此功能。
有没有人有这个好的解决方案?例如类似于:
filename = asksaveasfilename(
filetypes=[('XLS File', '*.xls'), ('CSV File', '*.csv')],
appendExt=True)
或者我是否必须为这个小缺失功能编写自己的功能?
注意:当我在Ubuntu中运行代码时,这非常有效,但遗憾的是在Windows 10中没有。