python對檔案的操作還算是方便的,只需要包含os模組進來,使用相關函式即可實現目錄的建立。
os.path.exists(path) 判斷乙個目錄是否存在
os.makedirs(path) 多層建立目錄
os.mkdir(path) 建立目錄
# 引入模組
import os
defmkdir
(path)
:# 去除首位空格
path = path.strip(
)# 去除尾部 \ 符號
path = path.rstrip(
"\\"
)# 判斷路徑是否存在
# 存在 true
# 不存在 false
i***ists = os.path.exists(path)
# 判斷結果
ifnot i***ists:
# 如果不存在則建立目錄
# 建立目錄操作函式
os.makedirs(path)
print
(path +
' 建立成功'
)return
true
else
:# 如果目錄存在則不建立,並提示目錄已存在
print
(path +
' 目錄已存在'
)return
false
# 定義要建立的目錄
mkpath =
"c:\users\xiahuadong\desktop\指靜脈演算法\finger_vein - master\finger_vein - master / gab_roi_db / 001 / left /"
# 呼叫函式
mkdir(mkpath)
import os
defcreat_dir
(path)
:"""
建立資料夾
:param path:資料夾路徑
:return:資料夾
"""ifnot os.path.exists(path)
: os.mkdir(path)
if __name__ ==
'__main__'
: creat_dir(
"123"
)
Python建立目錄資料夾
python對檔案的操作還算是方便的,只需要包含os模組進來,使用相關函式即可實現目錄的建立。1 os.path.exists path 判斷乙個目錄是否存在 2 os.makedirs path 多層建立目錄 3 os.mkdir path 建立目錄 直接上 def mkdir path 引入模組...
Python建立目錄資料夾
python對檔案的操作還算是方便的,只需要包含os模組進來,使用相關函式即可實現目錄的建立。1 os.path.exists path 判斷乙個目錄是否存在 2 os.makedirs path 多層建立目錄 3 os.mkdir path 建立目錄 直接上 1 2 3 4 5 6 7 8 9 1...
python 建立目錄 資料夾
python可以使用mkdir 和makedirs 兩種方法來建立目錄,mkdir 建立一層目錄,makedirs 建立多層目錄。引入模組 import os 建立目錄 d xxoo os.mkdir d xxoo 建立目錄 d test os.makedirs d test 這裡面使用mkdir ...