Skip to content

Instantly share code, notes, and snippets.

@DouglasHennrich
Last active August 29, 2015 14:14
Show Gist options
  • Save DouglasHennrich/f9280ac0fdf61466808b to your computer and use it in GitHub Desktop.
Save DouglasHennrich/f9280ac0fdf61466808b to your computer and use it in GitHub Desktop.
Erro: Error: ENOENT, open './../../front-end/images/imagem.jpg'
var fs = require("fs");
var fileName = "./imagem.jpg";
fs.readFile( fileName, function(err, data){
if( err ) { console.log( 'Erro: ' + err ); return res.json( err ); }
console.log( 'Sucesso: ' + data );
res.json( data );
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment