How to create directories with python module os
like
$ mkdir -p /some_non_exsitance_path/path
How to create directories with python module os
like
$ mkdir -p /some_non_exsitance_path/path
There is a method in the os
module that allows you to create multiple folders
os.makedirs(r'/some_non_exsitance_path/path')