fs.mkdirSync(path[, options])
同步地创建目录。
返回 undefined
或创建的第一个目录路径(如果 recursive
为 true
)。
这是 fs.mkdir()
的同步版本。
另见: mkdir(2)
。
Synchronously creates a directory. Returns undefined
, or if recursive
is
true
, the first directory path created.
This is the synchronous version of fs.mkdir()
.
See also: mkdir(2)
.