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

Node.JS文件系统解析

时间:2016-12-18 20:52:14      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:str   strong   var   error   app   log   文件系统   pre   node   

1.Node.js 文件系统

var fs = require("fs")

2.异步和同步

读取文件内容的函数有异步的 fs.readFile() 和同步的 fs.readFileSync()。

var  fs = require(‘fs‘)
fs.readFile( ‘a.txt‘,‘utf-8‘, function (err,data) {
    if( err )
    {
        console.error(err)
    }else{
        console.log( "not  aynsc===>" + data )
    }
})
console.log(‘app started‘)

var  rlt =  fs.readFileSync(‘a.txt‘)
console.log(‘rlt====>‘+ rlt )

  

  

 

Node.JS文件系统解析

标签:str   strong   var   error   app   log   文件系统   pre   node   

原文地址:http://www.cnblogs.com/ganchuanpu/p/6195226.html

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