Scanning the directory using os python function to collect

PHOTO EMBED

Tue May 21 2024 16:04:33 GMT+0000 (Coordinated Universal Time)

Saved by @Uncoverit #python

# Scanning the directory using os python function to collect
img_dirs = []
for entry in os.scandir(path_to_data):
    if entry.is_dir():
        img_dirs.append(entry.path)
content_copyCOPY