I am using the following script to create a group of folders.
import os
newFolders = ['large', 'list', 'of', 'folder', 'names']
setDirPath = os.getcwd()
for folder in newFolders:
os.makedirs(os.path.join(setDirPath,folder))
This is working great, Q: Where are the newly created folder's getting their properties from? Do they inherit any sharing/security/custom settings of the folder they reside in? Very new to Python, and want to create 600 client folders for a new project, and would like to avoid as many unintended problems as possible. python