VOOZH about

URL: https://www.geeksforgeeks.org/go-language/how-to-delete-or-remove-a-file-in-golang/

⇱ How to Delete or Remove a File in Golang? - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

How to Delete or Remove a File in Golang?

Last Updated : 2 Apr, 2020
In the Go language, you are allowed to remove the existing file with the help of the Remove() method. This method removes the specified file from the director or it also removes empty directories. If the given path is incorrect, then it will throw an error of type *PathError. It is defined under the os package so, you have to import os package in your program for accessing Remove() function. Syntax:
func Remove(file_name string) error
Example 1: Output: Before: 👁 Before Deleting a File in Golang
After: 👁 After Deleting a File in Golang
Example 2: Output: Before: 👁 Before Deleting a File in Golang
After: 👁 After Deleting a File in Golang
Comment
Article Tags:

Explore