Answers for "python loop through all folders and subfolders"

1

python loop through all folders and subfolders

directory = "c:\\folder\\you\\want\\to\\work_on"

for root, subdirectories, files in os.walk(directory):
    for subdirectory in subdirectories:
        print(os.path.join(root, subdirectory))
    for file in files:
        print(os.path.join(root, file))
Posted by: Guest on December-25-2020

Code answers related to "python loop through all folders and subfolders"

Python Answers by Framework

Browse Popular Code Answers by Language