create a directory in typescript

To create a directory in TypeScript using Node.js built-in fs module, you can use the fs.mkdir() method.

Here's an example:

index.ts
import fs from 'fs';

fs.mkdir('/path/to/directory', (err) => {
  if (err) throw err;
  console.log('Directory created successfully!');
});
140 chars
7 lines

This code creates a new directory at the specified path.

The fs.mkdir() method takes two arguments:

  1. The path of the directory to create.
  2. A callback function that will be executed after the directory is created. If any error occurs during the creation, the error object will be passed to the callback function.

Note that you need to have the necessary permissions to create a new directory on the given path, and the path should not already exist.

gistlibby LogSnag