python os.mkdir() 方法 Python os.makedirs() 方法 Python os.mkfifo() 方法 python os.mkdir() 方法 #!/usr/bin/python import os, sys # Path to be created path = "/tmp/home/monthly/daily/hourly" os.mkdir( path, 0755 ); print "Path is created" Python os.makedirs() 方法 Python os.mkfifo() 方法