-
Notifications
You must be signed in to change notification settings - Fork 17.9k
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
proposal: os: extend Root with CreateTemp #73042
Comments
Does this really make sense? the overwhelming primary use case of CreateTemp is for using the system global temp dor, which is usually on a different filesystem: If you have an intended target file, isn't it better to name it more deterministically (so it's also easier to clean up when you crash)? |
It's a bit less lobsided if you look at results for now-deprecated former name
There are many situations where using a deterministic name would be unsafe, e.g. if multiple threads or processes are all writing to that file. Such conditions are, after all, why Pulling out the name of the temp file isn't hard (if it were, then
Ultimately, however, how common this specific use case for |
I note that CreateTemp can be implemented on top of the existing os.Root API. You can pretty much just take the existing CreateTemp and replace its OpenFile call with Root.OpenFile. So the question is whether this is a common enough operation to justify adding to the Root API. I'm fairly dubious that it is. If we can accumulate evidence of Root.CreateTemp being something many users would use, that would be justification for adding it. |
That's fair enough. To be honest, in my main intended use case I'd probably wind up avoiding the |
Proposal Details
See also #73041 for adding
Rename
. Together, these could be used to improve the security and robustness of the common pattern of creating a temp file and then renaming it once the content has been written.Just as a general rule, it would be nice if
os.Root
were as close as possible to feature parity with the rootlessos
methods. This one just seems to me like a particularly important case.The text was updated successfully, but these errors were encountered: