"use strict"; exports.__esModule = true; exports.rmdir = void 0; function rmdir(args, curdir, socket) { var buf = ""; if (curdir[socket.id][args[0]] != undefined) { if (typeof curdir[socket.id][args[0]] == "object") { delete curdir[socket.id][args[0]]; buf += "Directory " + args[0] + " removed\n"; } else { buf += "Error: " + args[0] + " is not a directory\n"; } } else { buf += "Error: " + args[0] + " does not exist\n"; } return buf; } exports.rmdir = rmdir; //# sourceMappingURL=rmdir.js.map