mirror of
https://github.com/octoleo/restic.git
synced 2024-11-22 21:05:10 +00:00
fs: Add IsRegularFile()
This commit is contained in:
parent
09365cc4ea
commit
e4fdc5eb76
13
internal/fs/helpers.go
Normal file
13
internal/fs/helpers.go
Normal file
@ -0,0 +1,13 @@
|
||||
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|os.ModeCharDevice) == 0
|
||||
}
|
Loading…
Reference in New Issue
Block a user