I have a directory containing 450 folders, all unique names. Inside this folder I need to create a sub-folder called Metadata, so it looks like the following: Folder1/Metadata Folder2/Metadata Folder3/Metadata
Is there a way using Python to create this example?
os.makedir(path)
. See the docs for more information. – camelNeck Mar 28 at 10:23