micromatch / glob-fs

file globbing for node.js. speedy and powerful alternative to node-glob. This library is experimental and does not work on windows!
http://jonschlinkert.github.io/glob-fs
MIT License
55 stars 17 forks source link

readdir case-insensitive wildcard #38

Open 1Map opened 2 years ago

1Map commented 2 years ago

I work in Windows.

How would I go about looking for files like, for example, both: .txt and .TXT

glob.readdir returns either the one or the other, but not both.

For example I have 2 files: file1.txt file2.TXT

Now, I want to find all files with extension txt (Upper and Lower case). How would I do that without calling 2 functions (.txt and .TXT) ?