ModulesFs ModuleMelon.std.fs.createDirectoryAsync(path)On this pageMelon.std.fs.createDirectoryAsync(path)Creates a new directory with the specified path.Status: stable Returns: Promise<void>ParametersNameTypeDescriptionpathstringThe target path to the fileExample usageconst { createDirectoryAsync } = Melon.fs;await createDirectoryAsync("./myDirectory");