| 179 | } |
| 180 | |
| 181 | void print_tree(const lmpfs::vfs::NodePtr& n, std::string indent = "") { |
| 182 | fmt::print("{}{}{}\n", indent, n->is_dir() ? "[DIR] " : " ", n->name()); |
| 183 | if (n->is_dir()) for (auto& e : n->list()) print_tree(e.node, indent + " "); |
| 184 | } |
| 185 | |
| 186 | // ---- stdout color --------------------------------------------------------- |
| 187 | // Colour is opt-out: on when stdout is a real terminal and NO_COLOR is unset, |