I created a project via cargo, and i want to open file, that is in a different directory.
How can i do this, if i will use
let mut file = File::open("i don't know, what i have to write here").expect("Error to open");
This is not worked
let mut file = File::open("../some_file.txt").expect("Error to open");