diff --git a/versions/doc-improvements/docs/api/fs/index.html b/versions/doc-improvements/docs/api/fs/index.html index 96d0432..5c7c521 100644 --- a/versions/doc-improvements/docs/api/fs/index.html +++ b/versions/doc-improvements/docs/api/fs/index.html @@ -34,7 +34,7 @@ library offers more functions and will work on any operating system Hilbish does 2print(fs.join(hilbish.userDir.config, 'hilbish')) 3-- -> '/home/user/.config/hilbish' on Linux
Creates a new directory with the provided name
.
With recursive
, mkdir will create parent directories.
– This will create the directory foo, then create the directory bar in the
– foo directory. If recursive is false in this case, it will fail.
fs.mkdir(’./foo/bar’, true)
Creates a new directory with the provided name
.
With recursive
, mkdir will create parent directories.
– This will create the directory foo, then create the directory bar in the
– foo directory. If recursive is false in this case, it will fail.
fs.mkdir(’./foo/bar’, true)
string
name
Name of the directory
boolean
recursive
Whether to create parent directories for the provided name