anote
1import { Keywords } from "../flows/Keywords";
2import { Command } from "./Command";
3
4export class Mkdir extends Command {
5async execute(): Promise<string> {
6if(!this.isValid(Keywords.MKDIR)) return 'Not valid command.';
7const tail: string = this.getTail();
8await this.storage.createFolder(tail);
9return "Dir is created"
10}
11}