})
}
+
+ // make sure we have a metadata file for our file
+ fs.stat(metafile, function(err, stats)) {
+ if(err) {
+ log.debug("file (%s) has no metadata file - moving for cleanup");
+ cache.moveToCleanup(files[i]);
+ cache.moveToCleanup(metafile);
+ }
+ }
+
// check meta data
fs.stat(files[i], function(err, stats) {
var fsize = stats.size;
}
});
- })
+ });
+
} else {
log.debug("file %s was ignored as its in download", files[i]);
}