蟹黄堡秘方 发表于 2021-10-5 21:29:28

python第035讲第三题

import easygui as g
import os

file_path = g.fileopenbox(default="*.txt")

with open(file_path) as old_file:
    title = os.path.basename(file_path)
    msg = "文件【%s】的内容如下:" % title
    text = old_file.read()
    text_after = g.textbox(msg, title, text)
   
if text != text_after[:-1]:
    # textbox 的返回值会追加一个换行符
    choice = g.buttonbox("检测到文件内容发生改变,请选择以下操作:", "警告", ("覆盖保存", "放弃保存", "另存为..."))
    if choice == "覆盖保存":
      with open(file_path, "w") as old_file:
            old_file.write(text_after[:-1])
    if choice == "放弃保存":
      pass
    if choice == "另存为...":
      another_path = g.filesavebox(default=".txt")
      if os.path.splitext(another_path) != '.txt':
            another_path += '.txt'
      with open(another_path, "w") as new_file:
            new_file.write(text_after[:-1])


filesavebox在设定参数default='.txt'之后,如果保存文件名后缀错误还是会报错
所以想问一下大佬们:fileopenbox和filesavebox中的default参数设定分别有什么用呢?

大马强 发表于 2021-10-6 07:40:11

fileopenbox 默认参数设置为.txt的话,打开只能看到.txt的文件
filesavebox默认参数设置为.txt的话,保存默认为.txt

蟹黄堡秘方 发表于 2021-10-6 15:57:26

大马强 发表于 2021-10-6 07:40
fileopenbox 默认参数设置为.txt的话,打开只能看到.txt的文件
filesavebox默认参数设置为.txt的话,保 ...

可是在已经设置参数default = '.txt'的情况下,没有后面的if语句,如果用户不加后缀也还是不会保存成默认的txt格式啊

大马强 发表于 2021-10-6 17:20:58

蟹黄堡秘方 发表于 2021-10-6 15:57
可是在已经设置参数default = '.txt'的情况下,没有后面的if语句,如果用户不加后缀也还是不会保存成默认 ...

14.3 filesavebox()

filesavebox(msg=None, title=None, default='', filetypes=None)

filesavebox() 函数提供一个对话框,让用于选择文件需要保存的路径(带完整路径哦),如果用户选择 “Cancel” 则返回 None。

default 参数应该包含一个文件名(例如当前需要保存的文件名),当然也可以设置为空的,或者包含一个文件格式掩码的通配符。

filetypes 参数的设置方法请参考 fileopenbox() 函数。
保存文件那个default是 设置默认文件名,就像新建文本文件一样

蟹黄堡秘方 发表于 2021-10-6 17:50:34

大马强 发表于 2021-10-6 17:20
保存文件那个default是 设置默认文件名,就像新建文本文件一样

好的好的,懂了,谢谢大佬!
页: [1]
查看完整版本: python第035讲第三题