Home | History | Annotate | Download | only in os

Lines Matching refs:FileMode

24 	Mode() FileMode     // file mode bits
30 // A FileMode represents a file's mode and permission bits.
35 type FileMode uint32
37 // The defined file mode bits are the most significant bits of the FileMode.
45 ModeDir FileMode = 1 << (32 - 1 - iota) // d: is a directory
61 ModePerm FileMode = 0777 // Unix permission bits
64 func (m FileMode) String() string {
92 func (m FileMode) IsDir() bool {
98 func (m FileMode) IsRegular() bool {
103 func (m FileMode) Perm() FileMode {