有什么问题?
file.close()即使已使用打开文件,也将关闭文件
os.open()。
with os.fdopen(os.open('/path/to/file', os.O_WRonLY | os.O_CREAT, 0o600), 'w') as handle: handle.write(...)
欢迎分享,转载请注明来源:内存溢出
有什么问题?
file.close()即使已使用打开文件,也将关闭文件
os.open()。
with os.fdopen(os.open('/path/to/file', os.O_WRonLY | os.O_CREAT, 0o600), 'w') as handle: handle.write(...)
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)