hugo/docs/content/en/functions/os.Stat.md
2018-09-14 08:35:23 +02:00

747 B

title description godocref date publishdate lastmod categories menu keywords signature workson hugoversion relatedfuncs deprecated aliases
os.Stat Gets a file information of a given path. 2018-08-07 2018-08-07 2018-08-07
functions
docs
parent
functions
files
os.Stat PATH
readDir
false

If your current project working directory has a single file named README.txt (30 bytes):

{{ $stat := os.Stat "README.txt" }}
{{ $stat.Name }} → "README.txt"
{{ $stat.Size }} → 30

Function os.Stat returns os.FileInfo. For further information of os.FileInfo, see golang page.