Skip to content

Latest commit

 

History

History

File-System

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

FILE SYSTEM

What is file-system ?

  • File-system is a npm module allows user to work with files system on the computer .
  • We can create , update , delete a file or directory using FS .

Installing

Using npm:

$ npm install fs

Common use of the FS Module

  • Read file
  • Create file
  • Update file
  • Delete file
  • Rename file

We can see examples of every use of this module in File-System .