I have a little problem. I'm kinda new in python so I need help here.
I'm trying to make a folder but it should be independent on location.
The user can be on desktop and it will make on desktop and if in a directiory there and so.
I mean:
os.mkdir('C:\\Program Files\\....')
is not good
It's not possible to do:
os.mkdir('\\just a dir') ?
Why do I have to mention all the way to there?