fs: Add IsRegularFile()
This commit is contained in:
parent
09365cc4ea
commit
e4fdc5eb76
1 changed files with 13 additions and 0 deletions
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 a new issue