Garden 🌻

__fs.gdn::create_dir()

Create a directory at path.

Returns an error if the directory could not be created or already exists.

Example
import "__fs.gdn" as fs
fs::create_dir(Path{ p: "/tmp/my_new_directory" })
Source Code
public fun create_dir(path: Path): Result<Unit, String> {
  __BUILT_IN_IMPLEMENTATION
}