__fs.gdn::create_dir()
Create a directory at path.
path
Returns an error if the directory could not be created or already exists.
import "__fs.gdn" as fs fs::create_dir(Path{ p: "/tmp/my_new_directory" })
public fun create_dir(path: Path): Result<Unit, String> { __BUILT_IN_IMPLEMENTATION }