__fs.gdn::remove_file()
Remove the file at path.
path
Returns an error if the file could not be removed or does not exist.
import "__fs.gdn" as fs fs::remove_file(Path{ p: "/tmp/my_file.txt" })
public fun remove_file(path: Path): Result<Unit, String> { __BUILT_IN_IMPLEMENTATION }