Skip to content

Instantly share code, notes, and snippets.

@ntanya
ntanya / upload3
Created June 7, 2012 17:52
upload
app.post('/', function(req, res){
var temp_path = req.files.uploadfile.path;
var save_path = './public/images/' + req.files.uploadfile.name;
fs.rename(temp_path, save_path, function(error){
if(error) throw error;
fs.unlink(temp_path, function(){
if(error) throw error;