Answers for "python how to loop through folders"

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
10

python loop through files in directory

import os

for filename in os.listdir(directory):
    if filename.endswith(".asm") or filename.endswith(".py"): 
         # print(os.path.join(directory, filename))
        continue
    else:
        continue
Posted by: Guest on May-11-2020

Code answers related to "python how to loop through folders"

Python Answers by Framework

Browse Popular Code Answers by Language