Python os.makedirs() 方法
python os.makedirs() 方法
os.makedirs() 方法用于遞歸創(chuàng)建目錄。
如果子目錄創(chuàng)建失敗或者已經(jīng)存在,會(huì)拋出一個(gè) oserror 的異常,windows上error 183 即為目錄已經(jīng)存在的異常錯(cuò)誤。
如果第一個(gè)參數(shù) path 只有一級(jí),則 mkdir() 函數(shù)相同。
語(yǔ)法
makedirs()方法語(yǔ)法格式如下:
os.makedirs(path, mode=0o777)
參數(shù)
- path -- 需要遞歸創(chuàng)建的目錄,可以是相對(duì)或者絕對(duì)路徑。。
- mode -- 權(quán)限模式。
返回值
該方法沒(méi)有返回值。
實(shí)例
以下實(shí)例演示了 makedirs() 方法的使用:
實(shí)例
#!/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)建
相關(guān)文章
- Python 中文編碼
- Python pass 語(yǔ)句
- Python 字典 Dictionary
- Python 函數(shù)
- Python File 方法
- Python 數(shù)據(jù)結(jié)構(gòu)
- Python 環(huán)境
- Python 詞典
- Python 棧
- Python 算法分析
- Python 分而治之
- Python 回溯
- Python 攤銷(xiāo)分析
- Python3 簡(jiǎn)介
- Python3 列表(List)
- Python3 集合(Set)
- Python3 迭代器
- Python3 錯(cuò)誤和異常
- Python3 日期和時(shí)間
- Python3 內(nèi)置函數(shù)