blob: 01b3fd2499c0115f96077c7f15189e84d53d2111 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//go:build go1.16
// +build go1.16
package copy
import "io/fs"
// This is a cloned definition of os.FileInfo (go1.15) or fs.FileInfo (go1.16~)
// A FileInfo describes a file and is returned by Stat.
type fileInfo interface {
// Name() string // base name of the file
// Size() int64 // length in bytes for regular files; system-dependent for others
Mode() fs.FileMode // file mode bits
// ModTime() time.Time // modification time
IsDir() bool // abbreviation for Mode().IsDir()
Sys() interface{} // underlying data source (can return nil)
}
|