mirror of
https://github.com/octoleo/restic.git
synced 2024-10-31 19:02:32 +00:00
0d65b78168
Since Go 1.12, ModeCharDevice is included in ModeType: golang/go@a2a3dd00c9
14 lines
237 B
Go
14 lines
237 B
Go
package fs
|
|
|
|
import "os"
|
|
|
|
// IsRegularFile returns true if fi belongs to a normal file. If fi is nil,
|
|
// false is returned.
|
|
func IsRegularFile(fi os.FileInfo) bool {
|
|
if fi == nil {
|
|
return false
|
|
}
|
|
|
|
return fi.Mode()&os.ModeType == 0
|
|
}
|