Skip to content

Instantly share code, notes, and snippets.

@alanhoff
Forked from thebergamo/teste.js
Last active August 29, 2015 14:06
Show Gist options
  • Save alanhoff/1188ca75ed0cb3ffce80 to your computer and use it in GitHub Desktop.
Save alanhoff/1188ca75ed0cb3ffce80 to your computer and use it in GitHub Desktop.
var file = __dirname + '/../upload/'+ req.payload.code+'.jpg';
fs.exists(file, function(exists){
if(!exists)
return res(Boom.notFound('Image not found'));
res.file(file);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment