exports.rmdir = function(path) {
  return function(next) {
    fs.rmdir(path, done(next));
  };
};