Q:

Golang program to get the size of an existing file in bytes

belongs to collection: Golang File Handling Programs

0

In this program, we will get the size of the existing file in bytes and print the result on the console screen.

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 get the size of the existing file in bytes is given below. The given program is compiled and executed successfully.

// Golang program to get the size of the
// existing file in bytes

package main

import "os"
import "fmt"

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

	fmt.Println("Size of file in bytes: ", MyFile.Size())
}

Output:

Size of file in bytes:  11

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 get the file pointer MyFile using os.State() for the existing file and then we get the size of the file in bytes using the Size() function. After that, we printed the result 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 print the permissions of the exi... >>
<< Golang program to create an empty file...