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

nodejs read/write file

时间:2014-12-05 16:51:42      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:blog   http   io   ar   sp   java   on   div   art   

 

 

fs.readFile(‘c:\\tmp\\helloworld.txt‘,‘utf8‘,function(err,data){console.log(data);})

  

 var token=fs.readFileSync(‘c:\\tmp\\toekn.txt‘,‘utf8‘);

  

 

fs.writeFile(‘c:\\tmp\\helloworld.txt‘, ‘Hello World! now, hello again!‘)

  

fs.exists(‘c:\\tmp\\helloworld.txt‘,function(exists){console.log(exists);})

  

fs.existsSync(‘c:\\tmp\\helloworld.txt‘)

  

http://nodejs.org/api/fs.html#fs_fs_exists_path_callback

https://docs.nodejitsu.com/articles/file-system/how-to-read-files-in-nodejs

 

nodejs read/write file

标签:blog   http   io   ar   sp   java   on   div   art   

原文地址:http://www.cnblogs.com/zyip/p/4146823.html

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