Julia makedir dir.create Is there a way to create directories in Julia?
julia
Solution
Try `mkdir`. From the Julia Language documentation:
Make a new directory with name path and permissions mode. mode defaults to 0o777, modified by the current file creation mask. This function never creates more than one directory. If the directory already exists, or some intermediate directories do not exist, this function throws an error. See mkpath for a function which creates all required intermediate directories. Return path.
Problem
I'm trying to create a bunch of directories which is pretty straightforward in Python and R. Does anyone know how to do this in Julia? I looking at the Julia manual and nothing jumped out at me. Thanks. Chase CB