python遍歷文件夾下文件的方法:1、在python腳本中導入os模塊;2、通過for循環語句實現遍歷文件夾下文件操作即可。
具體操作方法:
1、首先需要在python腳本中導入os模塊進行文件操作。
import os
2、通過for循環語句判斷目錄是否為文件夾,如果是文件就打印,否則就重新判斷,從而實現遍歷操作即可。
代碼示例如下:
import os #導入os模塊
def bianLi(rootDir): #傳入的參數
for root,dirs,files in os.walk(rootDir): #使用API快速把某目錄下的路徑分類
for file in files: #用for循環把文件打印出來
print(os.path.join(root,file))
for dir in dirs: #用for循環把文件夾再遍歷一次
bianLi(dir)
rootDir = "/home/du/1" #指定一個文件夾,開始遍歷
bianLi(rootDir)