Create Directories Recursively
If you pass the -p
option to mkdir, it will create any necessary parent directories that do not exist yet. In Elixir the File.mkdir_p/1
function will do the same thing!
If you pass the -p
option to mkdir, it will create any necessary parent directories that do not exist yet. In Elixir the File.mkdir_p/1
function will do the same thing!