python 遍歷文件夾

一. 用遞歸遍歷目錄 # 定義一個函數來遍歷目錄 import os def getAllDirAndFile(pathDir): # 判斷是不是目錄 if not os.path.isdir(pathDir): return listNames = os.listdir(pathDir) for name in listNames:
相關文章
相關標籤/搜索