Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
golang.org/pkg/os/#Fileを調べました が、まだわかりません。ファイルの長さを取得する方法がないようです。
Goでファイルの長さを取得するには?
(*os.File).Stat()メソッドos.FileInfoを持つ値を返します。Size()したがって、ファイルが与えられたf場合、コードは次のようになります
(*os.File).Stat()
os.FileInfo
Size()
f
fi, err := f.Stat() if err != nil { // Could not obtain stat, handle error } fmt.Printf("The file is %d bytes long", fi.Size())