I'm trying to use the following in my GUI
def SaveFile():
sf = filedialog.asksaveasfile(defaultextension=".txt",
mode='w',
filetypes=[
("Text file", ".txt"),
("HTML file", ".html"),
("All files", ".*"),
])
sf=u'\u003c'
sf.encode('utf8')
if sf is None:
return
sf.write('\n'.join(listbox2.get(0,END)))
sf.close()
I get this error:
sf.write ('\n'.join(listbox2.get(0,END)))
^^^^^^^^
AttributeError: 'str' object has no attribute 'write'
If I use this its works fine, BUT I can't use a custom name for the said file.
with open("Name.txt", "w", encoding="utf-8") as file:
file.write('\n'.join(listbox2.get(0, END)))
Any Idea what I'm not doing right? I've searched here and asked on other forums with no answers.
filedialog.asksaveasfile()
produces aTextIOWrapper
which contains a propertyname
. You can usesf.name
instead of"Name.txt"
.You could also use:
or
as you attempted.
Or at least you could if you didn't overwrite sf with
sf=u'\u003c'
.