在 Go 中,os.File 类型提供了一种简单的方法来检索由 File 指针处理的文件的长度。
要确定文件的长度,您可以利用 Stat 函数由 os 包提供:
fi, err := f.Stat()
fmt.Printf("The file is %d bytes long", fi.Size())
为了说明检索过程,请考虑以下代码片段:
package main import ( "fmt" "os" ) func main() { f, err := os.Open("my_file.txt") if err != nil { fmt.Println("Could not open file:", err) return } fi, err := f.Stat() if err != nil { fmt.Println("Could not obtain file info:", err) return } fmt.Printf("The file is %d bytes long", fi.Size()) }
通过执行此代码,您可以检索并显示指定文件“my_file.txt”的长度。
以上是如何在 Go 中获取文件长度?的详细内容。更多信息请关注PHP中文网其他相关文章!