FileType returns the file mode without the permission bits.
()
| 190 | |
| 191 | // FileType returns the file mode without the permission bits. |
| 192 | func (m FileMode) FileType() FileMode { |
| 193 | return m & FileModeMask |
| 194 | } |
| 195 | |
| 196 | // Permissions returns just the permission bits of the mode. |
| 197 | func (m FileMode) Permissions() FileMode { |
no outgoing calls