Home | History | Annotate | Download | only in devel

Lines Matching full:fileinfo

267 * os: document FileInfo.Size as system-dependent for irregular files,
811 turn FileStat.Sys into a method on FileInfo (thanks Gustavo Niemeyer).
888 * archive/zip: add functions to convert between os.FileInfo & FileHeader.
1466 time and os.FileInfo changes in the last snapshot.
1488 Code that uses package time, package text/template, or package os's FileInfo
1532 In package os, the FileInfo struct is replaced by a FileInfo interface,
1534 Code that refers to *os.FileInfo (a pointer to the old struct) should
1535 instead refer to os.FileInfo (the new interface).
1538 type FileInfo interface {
1547 system kernel, you can access it by assuming that the FileInfo you are
1556 Gofix will take care of rewriting *os.FileInfo to os.FileInfo for you,
1559 See http://weekly.golang.org/pkg/os/#FileInfo for details.
2194 func(path string, info *os.FileInfo, err os.Error) os.Error
2802 * os: fix documentation for FileInfo.Name,
3536 fix FileInfo.Name returned by Stat (thanks David Forsythe).
5168 * os: FileInfo.Permission() now returns uint32 (thanks Scott Lawrence),
5519 * os: implement os.FileInfo.*time_ns for windows (thanks Alex Brainman).
5664 * os: FileInfo: regularize the types of some fields,
5714 * os: rename os.Dir to os.FileInfo.