Wrong path when trying to read a .txt file using OpenFilePanel

Hello, I have a function that uses Windows 10 explorer to select a file and it has to return me the path, this is the code that gets the path from Windows 10 explorer:

String path = EditorUtility.OpenFilePanel("Selecciona un archivo", "", "txt");

The problem is that it always start from my Asset folder. e.g, if I want to read a .txt file that is in Downloads, thats the path I get:
“C:\Users\Moreno\Documents\Unity\TFM\Assets\C:\Users\Moreno\Downloads\config1.txt”

What is happening? How can I get the real path?

Ok I found the problem, Y was adding Application.Datapath to the path I got because firstly I was reading a file that was in that path.