github.com/ader1990/go@v0.0.0-20140630135419-8c24447fa791/src/pkg/os/types_notwin.go (about)

     1  // Copyright 2009 The Go Authors. All rights reserved.
     2  // Use of this source code is governed by a BSD-style
     3  // license that can be found in the LICENSE file.
     4  
     5  // +build !windows
     6  
     7  package os
     8  
     9  import (
    10  	"time"
    11  )
    12  
    13  // A fileStat is the implementation of FileInfo returned by Stat and Lstat.
    14  type fileStat struct {
    15  	name    string
    16  	size    int64
    17  	mode    FileMode
    18  	modTime time.Time
    19  	sys     interface{}
    20  }
    21  
    22  func (fs *fileStat) Size() int64        { return fs.size }
    23  func (fs *fileStat) Mode() FileMode     { return fs.mode }
    24  func (fs *fileStat) ModTime() time.Time { return fs.modTime }
    25  func (fs *fileStat) Sys() interface{}   { return fs.sys }