Garden 🌻

__fs.gdn::remove_dir()

Remove the directory at path.

The directory must be empty.

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