Answers for "for loop to print list of files in a folder"

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 "for loop to print list of files in a folder"

Python Answers by Framework

Browse Popular Code Answers by Language