for all file in folder python code example
Example 1: for every file in the folder do python
for file in os.listdir(inputdir):
Example 2: how to search for a specific file extension with python
import glob, os
os.chdir("/mydir")
for file in glob.glob("*.txt"):
print(file)
Example 3: how to loop through files in a directory python
import os
for filename in os.listdir(directory):
if filename.endswith(".asm") or filename.endswith(".py"):
continue
else:
continue
Example 4: read all files in folder python
import glob
print(glob.glob("/home/adam/*.txt"))