ecr.commands.cmd_cd

src/ecr/commands/cmd_cd.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import os

from .. import log, shared, ui
from ..helper import loadMan, printHead
from ..ui.command import Command, Namespace, ReturnCode


class CdCommand(Command):
    @staticmethod
    def default(args: Namespace)->ReturnCode:  # pylint: disable=W0613
        console = ui.getConsole()
        if not os.path.exists(args.path):
            console.error("No this directory")
            return ReturnCode.ERROR
        os.chdir(args.path)
        log.info(f"Changed directory: {args.path}")
        shared.setCwd(os.getcwd())
        loadMan()
        printHead()
        return ReturnCode.OK

    def __init__(self):
        super().__init__("cd", help="Change working directory", func=CdCommand.default)

    def createParser(self, parsers):
        cmd = super().createParser(parsers)
        cmd.add_argument("path")
        return cmd