__fs.gdn::remove_dir()
Remove the directory at path.
path
The directory must be empty.
import "__fs.gdn" as fs fs::remove_dir(Path{ p: "/tmp/my_directory" })
public fun remove_dir(path: Path): Result<Unit, String> { __BUILT_IN_IMPLEMENTATION }