Scanning the directory using os python function

PHOTO EMBED

Wed May 22 2024 09:56:43 GMT+0000 (Coordinated Universal Time)

Saved by @Uncoverit #python

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