static bool isProbableChatLog(File f) { try { ret isProbableChatLog(toLines(f)); // TODO: scan one line } catch { false; } } static bool isProbableChatLog(L lines) { if (empty(lines)) false; S s = lines.get(0); ret s.startsWith("[") && contains(s, ']'); }