摘要:
fs.write() fs.read(fd,buffer,offset,length[,position],callback(err,bytesWritten,buffer))接收6个参数。 参数说明: fd 文件描述符,必须接收fs.open()方法中的回调函数返回的第二个参数。 buffer 是 阅读全文
摘要:
使用fs.read读文件 fs.read() 先介绍fs.open。 fs.open(path,flags,[mode],callback)方法用于打开文件,以便fs.read()读取。 参数说明: path 文件路径 flags打开文件的方式 [mode] 是文件的权限(可行参数,默认值是0666 阅读全文
摘要:
WriteFile写入文件 使用fs.writeFile(filename,data,[options],callback)写入内容到文件。 参数说明: filename String 文件名 data String|buffer option Object encoding String |nul 阅读全文
摘要:
readFile读取文件 fs.readFile(filename,[option],callback) 方法读取文件。 参数说明: filename String 文件名 option Object encoding String |null default=null flag String de 阅读全文