<div dir="ltr">Hello everyone,<br><br>Is there a way to set the umask of the process from within Racket? Or to specify the mode of a newly created file? I've been looking through the documentation, but I'm not finding anything along these lines. I was hoping that I could do something like the following from within my program:<br><br>(parameterize ([umask #o007])<br>  (display-to-file 5 "test-file"))<br><br>Or like this:<br><br>(display-to-file 5 "test-file" #:perms #o660)<br><br>I could change the permissions of the file with <span class=""></span><span title="Provided from: racket/base, racket | Package: base"><span class=""><a class="">file-or-directory-permissions</a></span></span><span class=""> after creating the file, but what I really want to do is create the file with those permissions from the start. Is there a good way to accomplish this? Am I missing something in the documentation?<br><br>Thanks!<br><br>- Cody<br></span></div>