标签: python matplotlib permissions
如何在Python脚本中为matplotlib savefig()命令生成的输出文件(例如PDF)指定* nix读/写权限?即在文件生成后不必使用chmod。
savefig()
chmod
答案 0 :(得分:1)
matplotlib.pyplot.savefig()无法更改文件权限。之后必须使用os.chmod(路径,模式)来完成,例如os.chmod(fname,0o400)。