handleMkd method
Implementation
void handleMkd(String argument, FtpSession session) {
if (session.serverType == ServerType.readOnly) {
session.sendResponse('550 Command not allowed in read-only mode');
} else {
session.makeDirectory(argument);
}
}