vote up 0 vote down star

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.

flag
4  
When you looked in the os module, what did you find? Anything useful? What code did you try? Anything? – S.Lott Aug 13 at 20:35
Duplicate. stackoverflow.com/questions/600268/… – Dave Jarvis Aug 13 at 20:39

3 Answers

vote up 1 vote down check
newpath = r'C:\Program Files\alex'; if not os.path.exists(newpath): os.makedirs(newpath)

From Python docs.

It looks like you're trying to make an installer. Windows Installer does a lot of work for you.

link|flag
2  
This will fail because you haven't double-backslashes in the call to os.makedirs. – Wayne Koorts Aug 13 at 21:11
2  
It's killing me: newpath = r'C:\Program Files\alex'; if not os.path.exists(newpath): os.makedirs(newpath) – hughdbrown Aug 14 at 2:20
generally speaking pathnames are case-sensitive. – SilentGhost Aug 17 at 14:09
Thanks hughdbrown. – mcandre Aug 17 at 14:36
vote up 5 vote down

Have you tried os.mkdir?

You might also try this little code snipped:

mypath = ...
if not os.path.isdir(mypath):
   os.makedirs(mypath)

makedirs does create multiple levels of directories, if needed.

link|flag
vote up 2 vote down

You probably want os.makedirs as it will create intermediate directories as well, if needed.

import os

dir makemydir(whatever):
  try:
    os.makedirs(whatever)
  except OSError:
    pass
  # let exception propagate if we just can't
  # cd into the specified directory
  os.chdir(whatever)
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.