I am trying to create folders from a list. I can get it to create the folders but I want it to be be able to check if there are any folders missing and create the missing ones
Folders = ['Folder1','Test','Help']
for i in Folders
os.makedirs(i)
This will create the folders but if i re-run it after deleting one it will just give me errors saying the first folder already exists. Is there any way to check and create the missing folders?