Golang program to rename a specified file with a new name

Here, we are going to learn how to rename a specified file with a new name in Golang (Go Language)?
Submitted by Nidhi, on April 05, 2021 [Last updated : March 04, 2023]

Renaming a file with a new name in Golang

Problem Solution:

In this program, we will rename the specified file with a new name using os.Rename() function and print an appropriate message on the console screen.

Program/Source Code:

The source code to rename a specified file with a new name is given below. The given program is compiled and executed successfully.

Golang code to rename a specified file with a new name

// Golang program to rename a specified file

package main

import "os"
import "fmt"

func main() {
	err := os.Rename("Sample.txt", "NewName.txt")
	if err != nil {
		fmt.Println("File does not exist")
	}
	fmt.Println("File renamed successfully")
}

Output:

File renamed 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 fmt, os packages then we can use a function related to the fmt and os package.

In the main() function, we changed the name of a file with a new name using os.Rename() function and printed the "File renamed successfully" message on the console screen.

Golang File Handling Programs »






Comments and Discussions!

Load comments ↻






Copyright © 2024 www.includehelp.com. All rights reserved.