rename every file in a folder python code example
Example 1: store all files name in a folder python
import os
#this command will store all .txt files in same directories
ALL_FILES_IN_DIR = [ELEM for ELEM in os.listdir() if "txt" in ELEM]
#ALL DIRETORIES
ALL_DIR = [ELEM for ELEM in os.listdir() if "." not in ELEM]
Example 2: read all files in folder python
import glob
print(glob.glob("/home/adam/*.txt"))