Good morning. I'm trying to open a directory in a default route in the following way:
String directorio = Environment.CurrentDirectory + "\..\Pruebas";
openFileDialog1.InitialDirectory = directorio;
openFileDialog1.ShowDialog();
but it does not work for me, it sends me straight to the root of C. I appreciate your help in advance.