Exemple #1
0
 public static void TryChangePathRelatively(string input, string[] data)
 {
     if (data.Length == 2)
     {
         string relPath = data[1];
         IOManager.ChangeCurrentDirectoryRelative(relPath);
     }
     else
     {
         OutputWriter.DisplayExeptionWrongInput(input);
     }
 }
    public static void TryChangePathRelatively(string input, string[] data)
    {
        string relPath = data[1];

        IOManager.ChangeCurrentDirectoryRelative(relPath);
    }