Q:

Golang program to delete an empty directory

belongs to collection: Golang File Handling Programs

0

In this program, we will delete a specified empty directory using os.Remove() function.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to delete an empty directory is given below. The given program is compiled and executed on the ubuntu 18.04 operating system successfully.

// Golang program to delete an empty directory

package main

import "fmt"
import "os"

func main() {
	err := os.Remove("MyDir")
	if err != nil {
		fmt.Println("Unable to remove directory")
	} else {
		fmt.Println("MyDir directory removed successfully")
	}
}

Output:

MyDir directory removed successfully

Explanation:

In the above program, we declare the package main. The main package is used to tell the Go language compiler that the package must be compiled and produced the executable file. Here, we imported the fmtos packages then we can use a function related to the fmt and os package.

In the main() function, we removed the "MyDir" directory using os.Remove() function and print the "MyDir directory removed successfully" message on the console screen.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Golang File Handling Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Golang program to list the content of the specifie... >>
<< Golang program to create multiple directories with...