Node.js是一个Javascript运行环境(runtime),发布于2009年5月,由Ryan Dahl开发,实质是对Chrome V8引擎进行了封装。Node.js对一些特殊用例进行优化,提供替代的API,使得V8在非浏览器环境下运行得更好。
安装很简单,去下载安装包就好啦,什么是安装成功?
下载地址:http://nodejs.cn/download/
在命令行输入
node -v
当前版本v8.9.3
读文件操作
建立一个read.js的文件
var readline = require('readline'); var fs = require('fs'); var fReadName = './hello.js'; var fRead = fs.createReadStream(fReadName); var objReadline = readline.createInterface({ input: fRead }); objReadline.on('line', (line)=>{ console.log(line); }); objReadline.on('close', ()=>{ console.log('readline close...'); });
这个的用途就是把我们刚才建立的hello.js的文件内容显示出来
还是用node read运行,当然也可以修改一下显示自己read.js
列举一个文件夹中的文件和文件夹
建立一个path.js输入如下内容
var fs = require("fs") path = __dirname+'\\mainpath' files = fs.readdirSync(path) files.forEach(walk) function walk(file) { states = fs.statSync(path+'\\'+file) if(states.isDirectory()) { console.log('Directory: '+path+'\\'+file) } else { console.log('File: '+path+'\\'+file) } }
还是用node path运行,当然也可以发挥一下做一个递归操作
发挥一下
今天就学这么多了
var fs = require("fs") rootpath = __dirname+'\\mainpath' readpath('',rootpath) function readpath(head,path) { console.log(head+'(D)'+path) head=head+'--' files = fs.readdirSync(path) files.forEach(walk) function walk(file) { states = fs.statSync(path+'\\'+file) if(states.isDirectory()) readpath(head,path+'\\'+file) else console.log(head+'(F)'+path+'\\'+file) } }
有奖活动 | |
---|---|
【有奖活动】分享技术经验,兑换京东卡 | |
话不多说,快进群! | |
请大声喊出:我要开发板! | |
【有奖活动】EEPW网站征稿正在进行时,欢迎踊跃投稿啦 | |
奖!发布技术笔记,技术评测贴换取您心仪的礼品 | |
打赏了!打赏了!打赏了! |