Skip to content

Instantly share code, notes, and snippets.

@catalinpit
Created June 10, 2021 13:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save catalinpit/09bad802541102c0cce2a2e4c3985066 to your computer and use it in GitHub Desktop.
Save catalinpit/09bad802541102c0cce2a2e4c3985066 to your computer and use it in GitHub Desktop.
const fs = require('fs');
const path = require('path');
fs.writeFile('content.txt', 'This is my first file!', (err) => {
if (err) {
throw err;
};
process.stdout.write('File created successfully!');
});
const filePath = path.join(process.cwd(), 'content.txt');
fs.readFile(filePath, (error, content) => {
if (error) throw error;
process.stdout.write(content);
});
fs.readdir(process.cwd(), (error, files) => {
if (error) throw error;
console.log(files);
});
fs.mkdir(`${process.cwd()}/myFolder/secondFolder`, { recursive: true }, (err) => {
if (err) throw err;
console.log('Folder created successfully!');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment