public override void Execute()
        {
            if (Data.Length != 2)
            {
                throw new InvalidCommandException(Input);
            }

            string relPath = Data[1];

            inputOutputManager.ChangeCurrentDirectoryRelative(relPath);
        }