import os
""" 批量建立資料夾,用來存放按日儲存的日常工作檔案
"""def
mkdir
(all_path)
:# 獲取檔案是否存在
folder = os.path.exists(all_path)
ifnot folder:
# os.makedirs 建立檔案時如果路徑不存在會建立這個路徑
os.makedirs(all_path)
print
("建立資料夾的目標位置是:"
+ all_path)
else
:print
("該位置資料夾已建立:"
+ all_path)
deffile_name
(path, name)
:# 迴圈建立檔名(按照輸入的數字)
for i in
range(1
, name +1)
:if i <10:
# 單個數字為了在排序方便,前方加0
all_path = path +
"\\0"
+str
(i)else
: all_path = path +
"\\"
+str
(i)print
(all_path)
mkdir(all_path)
if __name__ ==
'__main__'
: path =
"e:\\2021-03"
name =
31 file_name(path, name)
Python 建立資料夾
def mkdir path 引入模組 import os 去除首位空格 path path.strip 去除尾部 符號 path path.rstrip 判斷路徑是否存在 存在 true 不存在 false i ists os.path.exists path 判斷結果 ifnot i ists ...
建立資料夾
當某資料夾不存在時,建立資料夾 import os path dir file if not os.path.exists path dir os.makedirs path dir 同時建立資料夾有兩種函式,os.mkdir和os.makedirs,兩者的區別在於前者是一級一級建立檔案目錄,後者可...
python批量建立資料夾
有時需要建立一些同型別的資料夾儲存階段性的檔案,可以py指令碼實現批量建立資料夾 首先建立資料夾有兩個api 建立單層資料夾 import os path dir example ifnot os.path.exists path os.mkdir path 遞迴建立資料夾 import os pa...