摘要:
1. 文件打开 异步:fs.open(path[, flags[, mode]], callback) 错误优先: 2. 在文件中写入内容 异步:fs.write(fd, buffer[, offset[, length[, position]]], callback) 阅读全文
摘要:
引入fs文件模块: 所有的文件系统操作都具有同步和异步的形式: 文件写入过程: 1. 打开文件 同步:fs.openSync(path[, flags, mode]) 2. 向文件中写入内容 同步:fs.writeSync(fd, string[, position[, encoding]]) po 阅读全文