文件打开模式

来源:互联网 发布:nodejs 异步 数据库 编辑:程序博客网 时间:2024/06/06 01:30

r Readonly, file must exist
r+ Read/write, file must exist
w Create file, truncate if exists
w- or x Create file, fail if exists
a Read/write if exists, create otherwise (default)

0 0