Skip to content

Instantly share code, notes, and snippets.

@Ramko9999
Created April 25, 2021 18:25
Show Gist options
  • Save Ramko9999/548b5858106defec5a12cb3c8a8cff74 to your computer and use it in GitHub Desktop.
Save Ramko9999/548b5858106defec5a12cb3c8a8cff74 to your computer and use it in GitHub Desktop.
import (
"log"
"os
)
func removeFile(){
err := os.Remove("./removeFolder/remove.txt");
if err != nil{
log.Fatal(err);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment