Files
2024-09-19 21:38:24 -04:00

9 lines
102 B
Go

package main
import "os"
func main() {
fi, _ := os.Lstat("/this/path/does/not/exist")
fi.Size()
}