Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to determine if a File Matches a File Mask?

Tags:

c#

.net

regex

I need to decide whether file name fits to file mask. The file mask could contain * or ? characters. Is there any simple solution for this?

bool bFits = Fits("myfile.txt", "my*.txt");  private bool Fits(string sFileName, string sFileMask)     {         ??? anything simple here ???     } 
like image 997
jing Avatar asked Apr 07 '09 12:04

jing


2 Answers

I appreciate finding Joel's answer--saved me some time as well ! I did, however, have to make a few changes to make the method do what most users would expect:

  • I removed the 'this' keyword preceding the first argument. It does nothing here (though it could be useful if the method is intended to be an extension method, in which case it needs to be public and contained within a static class and itself be a static method).
  • I made the regular expression case-independent to match standard Windows wildcard behavior (so e.g. "c*.*" and "C*.*" both return the same result).
  • I added starting and ending anchors to the regular expression, again to match standard Windows wildcard behavior (so e.g. "stuff.txt" would be matched by "stuff*" or "s*" or "s*.*" but not by just "s").

private bool FitsMask(string fileName, string fileMask) {     Regex mask = new Regex(         '^' +          fileMask             .Replace(".", "[.]")             .Replace("*", ".*")             .Replace("?", ".")         + '$',         RegexOptions.IgnoreCase);     return mask.IsMatch(fileName); } 

2009.11.04 Update: Match one of several masks

For even more flexibility, here is a plug-compatible method built on top of the original. This version lets you pass multiple masks (hence the plural on the second parameter name fileMasks) separated by lines, commas, vertical bars, or spaces. I wanted it so that I could let the user put as many choices as desired in a ListBox and then select all files matching any of them. Note that some controls (like a ListBox) use CR-LF for line breaks while others (e.g. RichTextBox) use just LF--that is why both "\r\n" and "\n" show up in the Split list.

private bool FitsOneOfMultipleMasks(string fileName, string fileMasks) {     return fileMasks         .Split(new string[] {"\r\n", "\n", ",", "|", " "},             StringSplitOptions.RemoveEmptyEntries)         .Any(fileMask => FitsMask(fileName, fileMask)); } 

2009.11.17 Update: Handle fileMask inputs more gracefully

The earlier version of FitsMask (which I have left in for comparison) does a fair job but since we are treating it as a regular expression it will throw an exception if it is not a valid regular expression when it comes in. The solution is that we actually want any regex metacharacters in the input fileMask to be considered literals, not metacharacters. But we still need to treat period, asterisk, and question mark specially. So this improved version of FitsMask safely moves these three characters out of the way, transforms all remaining metacharacters into literals, then puts the three interesting characters back, in their "regex'ed" form.

One other minor improvement is to allow for case-independence, per standard Windows behavior.

private bool FitsMask(string fileName, string fileMask) {     string pattern =          '^' +           Regex.Escape(fileMask.Replace(".", "__DOT__")                          .Replace("*", "__STAR__")                          .Replace("?", "__QM__"))              .Replace("__DOT__", "[.]")              .Replace("__STAR__", ".*")              .Replace("__QM__", ".")          + '$';     return new Regex(pattern, RegexOptions.IgnoreCase).IsMatch(fileName); } 

2010.09.30 Update: Somewhere along the way, passion ensued...

I have been remiss in not updating this earlier but these references will likely be of interest to readers who have made it to this point:

  • I embedded the FitsMask method as the heart of a WinForms user control aptly called a FileMask--see the API here.
  • I then wrote an article featuring the FileMask control published on Simple-Talk.com, entitled Using LINQ Lambda Expressions to Design Customizable Generic Components. (While the method itself does not use LINQ, the FileMask user control does, hence the title of the article.)
like image 171
Michael Sorens Avatar answered Sep 18 '22 14:09

Michael Sorens


Try this:

private bool FitsMask(string sFileName, string sFileMask) {     Regex mask = new Regex(sFileMask.Replace(".", "[.]").Replace("*", ".*").Replace("?", "."));     return mask.IsMatch(sFileName); } 
like image 33
Joel Coehoorn Avatar answered Sep 17 '22 14:09

Joel Coehoorn