Answers for "obtain files python"

0

obtain files python

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]
Posted by: Guest on April-17-2022

Python Answers by Framework

Browse Popular Code Answers by Language