其他分享
首页 > 其他分享> > 【JS学习】require('fs')(fs模块用于对系统文件及目录进行读写操作。)

【JS学习】require('fs')(fs模块用于对系统文件及目录进行读写操作。)

作者:互联网

 

npm install fs --save-dev

nodejs模块——fs模块:fs模块用于对系统文件及目录进行读写操作。

一、同步和异步

 

二、readFile读取文件

fs.readFile(filename,[option],callback) 方法读取文件。

参数说明:

设置utf-8编码写法:

复制代码
// 设置编码格式
fs.readFile('./test.txt', 'utf-8', function(err, data) {
    // 读取文件失败/错误
    if (err) {
        throw err;
    }
    // 读取文件成功
    console.log('utf-8: ', data.toString());
  //直接用console.log(data);也可以
});
复制代码

readFile同步的写法就是没有回调函数:fs.readFileSync(filename,[options])。

本地效果为:E:\www\hxs\hxsapp-fe2\build\LvShou-tasks.js

nodejs模块——fs模块    https://www.cnblogs.com/starof/p/5038300.html

标签:fs,读取,读写操作,readFile,系统文件,模块,data,String
来源: https://www.cnblogs.com/gtea/p/15820277.html