Python os.makedirs() 方法
概述
os.makedirs() 方法用于遞歸創(chuàng)建目錄。像 mkdir(), 但創(chuàng)建的所有intermediate-level文件夾需要包含子目錄。
語法
makedirs()方法語法格式如下:
os.makedirs(path, mode=0o777)
參數(shù)
path -- 需要遞歸創(chuàng)建的目錄。
mode -- 權(quán)限模式。
返回值
該方法沒有返回值。
實例
以下實例演示了 makedirs() 方法的使用:
#!/usr/bin/python # -*- coding: UTF-8 -*- import os, sys # 創(chuàng)建的目錄 path = "/tmp/home/monthly/daily" os.makedirs( path, 0755 ); print "路徑被創(chuàng)建"
執(zhí)行以上程序輸出結(jié)果為:
路徑被創(chuàng)建
更多建議: