dirSortByModTime returns true if dir is sorted by mod time
(fpath core.Filename)
| 280 | |
| 281 | // dirSortByModTime returns true if dir is sorted by mod time |
| 282 | func (ft *Tree) dirSortByModTime(fpath core.Filename) bool { |
| 283 | return ft.Dirs.sortByModTime(ft.RelativePathFrom(fpath)) |
| 284 | } |
| 285 | |
| 286 | // AddExternalFile adds an external file outside of root of file tree |
| 287 | // and triggers an update, returning the Node for it, or |
no test coverage detected