IsDir returns true if file is a directory (folder)
()
| 228 | |
| 229 | // IsDir returns true if file is a directory (folder) |
| 230 | func (fn *Node) IsDir() bool { |
| 231 | return fn.Info.IsDir() |
| 232 | } |
| 233 | |
| 234 | // IsIrregular returns true if file is a special "Irregular" node |
| 235 | func (fn *Node) IsIrregular() bool { |
no outgoing calls
no test coverage detected