Skip to content

Instantly share code, notes, and snippets.

@indutny
Created June 21, 2011 13:51
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 indutny/1037892 to your computer and use it in GitHub Desktop.
Save indutny/1037892 to your computer and use it in GitHub Desktop.
// Подключение модуля fs
var fs = require('fs');
try {
// Вызов синхронного метода writeFile
fs.writeFileSync('/tmp/1.txt', 'A poem');
// Все готово, можно сделать что-нибудь с файлом
// Например, удалить его
fs.unlinkSync('/tmp/1.txt');
} catch(err) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment