Garden 🌻

__fs.gdn::list_directory()

List the contents of the specified directory.

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