Open
Description
As in the title. create_dir()
clearly states that path
existing causes an error. create_dir_all()
does not specify that this is an error, but it also does not specify that it's not an error. Nor is it mentioned as a platform-specific behavior, unless we assume that mkdir
references mkdir(1)
, not mkdir(2)
or mkdir(3)
, which makes little sense to me.