python怎么讀取文件夾中的文件

小億
317
2023-10-31 20:59:19
欄目: 編程語言

讀取文件夾中的文件可以使用Python的os模塊和glob模塊。以下是兩種常用的方法:

方法一:使用os模塊的listdir函數(shù)

import os

folder_path = '文件夾路徑'
for filename in os.listdir(folder_path):
    file_path = os.path.join(folder_path, filename)
    if os.path.isfile(file_path):
        with open(file_path, 'r') as file:
            # 處理文件內(nèi)容
            pass

方法二:使用glob模塊的glob函數(shù)

import glob

folder_path = '文件夾路徑'
file_list = glob.glob(folder_path + '/*')
for file_path in file_list:
    if os.path.isfile(file_path):
        with open(file_path, 'r') as file:
            # 處理文件內(nèi)容
            pass

以上代碼中,需要將’文件夾路徑’替換為實(shí)際的文件夾路徑。然后遍歷文件夾中的文件,使用open函數(shù)打開文件并進(jìn)行處理。

0