
# https://www.globalsino.com/ICs/
# Count how many folders in a directory

import os

theDirectory = r"C:\0Python\0testingCodes\New folder"

print(len(next(os.walk(theDirectory))[1]))

