Created
April 25, 2021 18:25
-
-
Save Ramko9999/548b5858106defec5a12cb3c8a8cff74 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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