Dapatkan file di direktori dan subdirektori

from os import walk
from os.path import join
path = 'C:\\'
# Creates list of the items in directories (+subdirectories)
items = [join(root, file) for root, subdirs, files in walk(path) for file in files]
Damarion Abendanon