// Static public static bool TryGet(string path, out Dir outDir) { if (_Dir.Exists(path)) { outDir = new Dir(path); return true; } outDir = null; return false; }
public bool TryGetDir(string dir, out Dir outDir) { string d = firstDirMatch(dir); if (d == null) { outDir = null; return false; } outDir = new Dir(_Path.Combine(Path, d)); return true; }