码迷,mamicode.com
首页 > Web开发 > 详细

【node.js学习】--(3)--读写文件

时间:2015-02-28 21:40:39      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:node.js

 

读写文件

一般读写

新建copyFile.js

var fs = require("fs");
 
function copyFile(src,dest){
         varfile = fs.readFileSync(src);//根据文件路劲读取文件
         fs.writeFileSync(dest,file);//将内容写入文件        
}
function main(argv){
         copyFile(argv[0],argv[1]);
}
main(process.argv.slice(2));//接受命令参数

执行拷贝:node copyFile “./in.txt” “./out.txt”

技术分享

运行效果:

将in.txt拷贝为out.txt

 技术分享

管道读写

修改copyFile函数的内容为:

fs.createReadStream(src).pipe(fs.createWriteStream(dest));   

管道连接了输入输出流,可以实现大文件拷贝。

 

遍历文件夹

同步遍历

新建travelDir.js

var fs = require("fs");
var path = require("path");
 
function travel(dir, callback) {
   fs.readdirSync(dir).forEach(function (file) {
       var pathname = path.join(dir, file);//拼接子路径
 
       if (fs.statSync(pathname).isDirectory()) {//判断是否是文件夹
           travel(pathname, callback);
       } else {
           callback(pathname);
       }
   });
}
 
function printDir(argv){
        
         travel(argv[0],function (pathname) {
                   console.log(pathname);
         });
}
printDir(process.argv.slice(2));


对文件结构为:

testTravelDir/
└── fathers
    ├── childs
    │  ├── child01.txt
    │  └── child02.txt
    └──father01.txt
 
2 directories, 3 files

的目录,遍历结果为:

技术分享

异步遍历

字符编码

------------------------------------------------------------------------------------------------

------------------------------------------------------------------------------------------------

API相关文档

官方文档:http://nodejs.org/api/buffer.html

Buffer(数据块)

字符串和二进制互操作

Stream(数据流)

.on(...);

.end();

.pause();

.resume();

File System(文件系统)

文件属性读写:

fs.stat

fs.chmod

fs.chown

文件内容读写:

fs.readFile

fs.readdir

fs.writeFile

fs.mkdir

底层文件操作:

fs.open

fs.read

fs.write

fs.close

Path(路径)

.normalize

.join

.extname

 

参考http://www.nodewhy.com/post/15

【node.js学习】--(3)--读写文件

标签:node.js

原文地址:http://blog.csdn.net/tianxuzhang/article/details/43989643

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!