Quantcast
Channel: Get file size given file descriptor in Go - Stack Overflow
Viewing all articles
Browse latest Browse all 3

Get file size given file descriptor in Go

$
0
0

If given a path, I would use this to get file size

file, _ := os.Open(path)
fi, _ := file.Stat()
fsuze := fi.Size()

But if only given fd, how can I get the file size? Is there any way in Go like this in C:

lseek(fd, 0, SEEK_END)

Viewing all articles
Browse latest Browse all 3

Latest Images

Trending Articles





Latest Images