Elixir provides Path.wildcard, which uses the Erlang :filelib.wildcard function internally.
Matching is case-sensitive, for example, "a" does not match "A". (http://erlang.org/doc/man/filelib.html#wildcard-1)
Please is there a case-insensitive alternative?