I have a little problem. I'm a little new to python, so I need help here.
I am trying to create a folder, but it must be location independent.
The user can be on the desktop and do it on the desktop, and if the directory is there.
I mean:
os.mkdir('C://Program Files//....')
not good
Unable to execute:
os.mkdir('//just a folder') ?
Why should I signpost all the way there?
source
share