package main import ( "os" ) func main() { err := os.Remove("./some/file.txt") if err != nil { panic(err) } }