I want the user to be able to type paths as arguments for my program
The progeram should work over all OS...
Until now i used x=input("...") and parsed this x as my path
But in Unix it is more complicated, in case i run my program from ~/a/c/b and i want the argument to be directory 'a', i should type ../../ ?
What should i write in Unix in order to get correct path... ?
Or is there another module to use in order to get user paths in the template above ?
Thank you !