Create the folder at path on the filesystem
#include <filesystem>
namespace fs = std::filesystem; fs::create_directory(path);
import "os"
err := os.Mkdir(path, os.ModeDir)
err := os.MkdirAll(path, os.ModeDir)
sysutils
MkDir(path);
use Path::Tiny qw(path);
path($path)->mkpath;
import os
os.mkdir(path)
FileUtils.mkpath( path )
use std::fs;
fs::create_dir(path)?;
No security, no password. Other people might choose the same nickname.