-
Notifications
You must be signed in to change notification settings - Fork 475
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
Use Directory.CreateTempSubdirectory #607
Conversation
The original structure for the temp assets was DCP will cleanup the I'm wondering if we should consider refactoring back to |
If the given path doesn't exist, we specifically create it as part of creating the folder to hold the unix domain socket we use for sending system logs from DCP back to the AppHost. If the default for Directory.CreateDirectory isn't 0700 on Unix, we should probably update that call as well. |
But now that I think about it, using a shared root |
Note another change we could have made is to add a |
* Use Directory.CreateTempSubdirectory The advantage here is that the folder gets the correct permissions on Unix.
* Use Directory.CreateTempSubdirectory (#607) * Use Directory.CreateTempSubdirectory The advantage here is that the folder gets the correct permissions on Unix. * Improvements for temp paths and OS check (#624) --------- Co-authored-by: Eric Erhardt <[email protected]>
The advantage here is that the folder gets the correct permissions on Unix.
@danegsta - who cleans up this folder?