标签:nod 异步写入 write try catch 回调函数 文件系统 cat 错误 files
1.node.js内置的fs模块就是文件系统模块,负责读写文件。
2.同步读文件 fs.readFileSync() ,直接返回读到的结果。如果发生错误,则try catch 捕获错误。
3.异步写入文件 fs.writeFile() 参数依次是文件名,数据,回调函数
4.同步写入文件 fs.writeFileSync()。
5.获取文件大小。fs.stat()
标签:nod 异步写入 write try catch 回调函数 文件系统 cat 错误 files
原文地址:http://www.cnblogs.com/huan1/p/6714003.html