CliSite/commands/rmdir.js

21 lines
595 B
JavaScript
Raw Permalink Normal View History

2022-06-12 09:38:38 +02:00
"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