digitalmars.D.learn - globMatch: distinguish double ** (recursive) vs single *
- Timothee Cour (7/7) Oct 20 2013 I was hoping std.path.globMatch distinguished single * (non-recursive) v...
I was hoping std.path.globMatch distinguished single * (non-recursive) vs double ** (recursive) so that: "a1/a2/a3.txt".globMatch("*/a3.txt") returns false "a1/a2/a3.txt".globMatch("**/a3.txt") returns true as in good shells (and python 3.4 IRRC) but it's not the case. Is that intended?
Oct 20 2013