restic/internal/fs/helpers.go

14 lines
237 B
Go
Raw Normal View History

2017-12-23 12:12:36 +01:00
package fs
import "os"
2017-12-23 12:12:36 +01:00
// 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
2017-12-23 12:12:36 +01:00
}