NODEJS:FS Modules & Rimraf Modules

Source: Internet
Author: User

  Module FS:He can manage the file system, write files, delete and so on. Module Rimraf:Recursive deletion of the file's node plugin, before the project's file compilation, you can clear the contents of the Dist folder  API Example:
varFS = require ("FS");varRimraf = require (' Rimraf '));vartxt = "I am new content Bb.txt"; Fs.readfile ("./bb.txt", "UTF8",function(error,data) {if(Error) {Throwerror;    } console.log (data);}); //Read FileFs.writefile ("./bb.txt", TXT,function(err) {if(err) {Throwerr}; Console.log ("File saved.");//file is saved});//Write FileFs.unlink ('./cc.txt ',function() {Console.log (' Success ');});//Deleting FilesFs.rename ('./bb.txt ', ' new_bb.txt ',function(Err) {Console.log (' Rename Success ');});//Modify file nameFs.stat ('./new_bb.txt ',function(err, stat) {Console.log (stat);});//View file Statusfs.exists ('./bb.txt ',function(exists) {Console.log (exists);});//determine if a file existsFs.appendfile ('./test.txt ', ' Append file contents using Fs.appendfile ',function() {Console.log (' Append content complete ');});//File Append contentFs.mkdir ('./dist ',function(err) {if(ERR)Throwerr; Console.log (' Create directory Success ')});//Create a directory

NODEJS:FS Modules & Rimraf Modules

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.