I want to put output information of my program to a folder. if given folder is not exit, then program should create a new folder with folder name as given in the program. is it possible?
if yes please let me how. suppose i have given folder path like "C:\Program Files\alex"
and alex folder doesn't exist then program should create alex folder and should put output information in the alex folder.
|
|
|
|||
|
|
From Python docs. It looks like you're trying to make an installer. Windows Installer does a lot of work for you. |
||||||||||||
|
|
|
Have you tried os.mkdir? You might also try this little code snipped:
makedirs does create multiple levels of directories, if needed. |
||
|
|
|
|
You probably want os.makedirs as it will create intermediate directories as well, if needed.
|
||
|
|

osmodule, what did you find? Anything useful? What code did you try? Anything? – S.Lott Aug 13 at 20:35