-
Notifications
You must be signed in to change notification settings - Fork 120
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Please support creating temporary directories with mode 0700 #114
Comments
See #61. Basically: needs implementation. |
I also have a usecase where explicitly setting the permission mask ( |
This was referenced Jul 16, 2020
Implemented. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
tempfile creates temporary files with mode 0600, but doesn't seem to restrict permissions on temporary directories at all. I'd like to create a temporary directory with mode 0700 (and not rely on the current umask to restrict write access). Ideally, I'd like tempfile to do so by default, for security reasons; if there's some reason the default permissions can't change, then I'd like to have an option to set them.
The text was updated successfully, but these errors were encountered: