Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 444 Bytes

README.md

File metadata and controls

25 lines (16 loc) · 444 Bytes

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 .