On Thu, Aug 1, 2024 at 4:01 PM Kenneth Flak <kennethf...@protonmail.com> wrote:
>
>
> Hi,
>
> How can I create a directory programmatically? I have this (dir is
> defined earlier in the code):
>
> (if (not (directory? dir))
>      (make-directory dir))
>
> but make-directory is, unfortunately, not an S7 function.¨

Don't know if it's programmatically enough, but this should work:

(system (string-append "mkdir " dir))

_______________________________________________
Cmdist mailing list
Cmdist@ccrma.stanford.edu
https://cm-mail.stanford.edu/mailman/listinfo/cmdist

Reply via email to