Skip to content

Instantly share code, notes, and snippets.

@catalinpit
Created June 10, 2021 14:05
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/b1201434218c400f77e042109bfce99e to your computer and use it in GitHub Desktop.
Save catalinpit/b1201434218c400f77e042109bfce99e 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.unlink(filePath, (error) => {
if (error) throw error;
console.log('File deleted!')
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment