1. 程式人生 > >Python實現遍歷指定路徑下的檔案列印並加入列表

Python實現遍歷指定路徑下的檔案列印並加入列表

直接上程式

# -*- coding: utf-8 -*-

import os

file_path_list = []# 列表用於存放路徑

def traverse(folder_path):
    fp = os.listdir(folder_path)
    for file in fp:
        tmp_path = os.path.join(folder_path,file)# string 當前路徑下的檔案
        file_path_list.append(tmp_path)# 將每條路徑加入列表

path = 'G:/Visual studio/ShipC'
traverse(path) print(file_path_list) input("press any key to quit...")