A Basic Guide to Manipulating the File System in Node.js


Working with files is one of the most common tasks a program performs, so save time and effort with Node’s helper library.


One of the built-in features of Node.js is the manipulation of the operating system’s file system using the fs module. This Node.js module contains many useful functions for working with files and directories.


Files are simply referred to as persisted objects or chunks of data that are typically stored on a hard medium known as a disk or memory. Files can be of various types, from text files to image files, audio files, and many more.

So, what is a file system, and how can you easily interact with an operating system’s file system in Node.js?


What Is a File System?

A file system defines how an operating system can identify, organize, store, and access files, along with other operations.

The file system of an operating system also does the job of grouping files into collections known as directories or folders. Ordinary files and directories are the most common parts of a file system that are often interacted with among many others.

Some examples of file systems include New Technology File System (NTFS), UNIX File System (UFS), and Hierarchical File System (HFS).

What Is the Node.js fs Module?

The Node.js fs module is a built-in library provided by Node.js for working with the file system of any operating system that supports Node. The fs module is easily accessible and is the go-to library for file operations like reading from files or writing data to files in Node.js.

It is very commonly used with the path and os modules to perform various operations on files. To use the fs module in your programs, you can import it into your source code as shown in the code below.

 
const fs = require('fs')

import fs from 'fs'

What Is the Node.js path Module?

You can use the Node.js path module to manipulate file paths. It includes utilities for easily interacting with file and directory paths. Using the fs and path modules in tandem to complete a task is standard practice. This is because the majority of fs module functions depend on paths to target files or directories to function.

You can import the path module into your code with the syntax below:

 
const path = require('path')

import path from 'path'

Common Functions for Accessing the File System in Node.js

Here are the most commonly used Node.js fs and path module functions, and how to use them to interact with files and directories.

Working With Paths

  1. path.resolve: This is the function for resolving a path from a list of path instructions passed as parameters. For example:
     path.resolve('home', 'projects', 'web');

    path.resolve('home/projects/web', '../mobile');
  2. path.normalize: The normalize function returns the correct and normalized path from a given input path. For example:
     path.normalize('home/projects/web/../mobile/./code');
  3. path.join: This function builds a path out of several segments. For example:
     path.join('home', 'projects', '../', 'movies');
  4. path.basename: The basename function returns the final path segment. You can use it in two ways:
     path.basename('home/projects/web/index.js');

    path.basename('home/projects/web/index.js', '.js');
  5. path.dirname: This function returns the path to the last directory of a given path. Example:
     path.dirname('home/projects/web/index.js');
  6. path.extname: With this function, you can get the extension of a file from a given path.
     path.extname('home/projects/web/index.js');

Opening and Closing Files

  1. fs.open: This is the function for opening or creating a file synchronously in Node.js. The synchronous form of fs.open is fs.openSync. fs.open accepts four arguments which are the file path, flags, open mode, and a callback function. Flags and open mode have a default value, and you may learn more about them from the Node.js fs.open documentation.
     const filePath = path.join(__dirname, '/videos/newVideo.mp4');

    fs.open(filePath, (error, fileDescriptor) => {
        
        console.log(fileDescriptor);
    })
  2. fs.close: It is good practice to always close any open files when they are no longer needed. Node.js has the fs.close function for this:
     fs.open(filePath, (error, fileDescriptor) => {
        
        console.log(fileDescriptor);

        
        fs.close(fileDescriptor, (error) => {
            
            console.log('File closed successfully');
        });
    })

Creating and Deleting

  1. fs.mkdir: This works just like the mkdir terminal command which creates a new directory. It takes in a path, mode (optional), and callback function as parameters. You can use it like this:
     const dirPath = path.join(__dirname, 'newDirectory');

    fs.mkdir(dirPath, (error) => {
        
        console.log('New directory created successfully');
    });

  2. fs.unlink: This function removes or deletes the file at the path passed in as an argument. Consider the code example below:
     const filePath = path.join(_dirname, 'oldFile.js');

    fs.unlink(filePath, (error) => {
        
        console.log('File has been deleted successfully');
    });
  3. fs.rmdir: This method deletes the directory at a given path. It’s very similar in usage to the unlink method:
     const dirPath = path.resolve('home', 'projects', 'web');

    fs.rmdir(dirPath, (error) => {
        
        console.log('Directory successfully deleted');
    })

File Metadata

  1. fs.exists: The exists method checks if the file at a given path exists. The implementation is as follows:
     let filePath = path.join(__dirname, 'index.html');

    fs.exists(filePath, (exists) => {
        console.log(exists)
    })
  2. fs.stat: This is a synchronous function that returns the properties of a file. It returns an fs.Stats object which exposes some methods for accessing the properties of the file. Here’s an example:
     fs.stat('index.js', (error, stats) => {
        console.log(stats);
        stats.isFile();
        stats.isDirectory();
    })

You should use the path methods when working with file paths as they save you from unexpected behavior across platforms. The Node.js fs and Node.js path documentation describe an exhaustive list of methods.

Manipulating the File System in Node.js

The vastness of the fs module makes it very easy to access and interact with files on any operating system. When you use it together with the path module, you are open to more functionality and can manipulate the file system as you want.

A major advantage of Node.js is its portability. You can develop your apps on any platform and deploy them anywhere without worrying about basic compatibility issues.



Source link

Share

Leave a Reply

Your email address will not be published. Required fields are marked *