How to perform a case-insensitive file search in Erlang/Elixir

Viewed 792

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?

1 Answers
Related