Julia makedir dir.create Is there a way to create directories in Julia?

I am trying to create a bunch of directories that is pretty simple in Python and R. Does anyone know how to do this in Julia? I look at Julia’s leadership and haven’t jumped at me. Thank you Chase CB

+4
source share
1 answer

Give it a try mkdir. From the documentation for Julia's documentation :

Create a new directory with name and resolution mode. default mode is 0o777, changed by the current file creation mask.

+4
source

All Articles