Garden 🌻

__fs.gdn::remove_file()

Remove the file at path.

Returns an error if the file could not be removed or does not exist.

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