How do I grant permissions on directories with pythonwin? At the moment we use a command line utility: cacls "existing path" /E /T /P Everyone:F To give Everyone full access (:F) by modifying an existing ACL (/E) and affecting all contents of the directory (/T) I'd like to do it all with shell or com stuff if possible. Thanks, -Jim