Regular expressions in C# for file name validation

Go To StackoverFlow.com

19

What is a good regular expression that can validate a text string to make sure it is a valid Windows filename? (AKA not have \/:*?"<>| characters).

I'd like to use it like the following:

// Return true if string is invalid.
if (Regex.IsMatch(szFileName, "<your regex string>"))
{
    // Tell user to reformat their filename.
}
2008-09-19 06:28
by Game_Overture


48

As answered already, GetInvalidFileNameChars should do it for you, and you don't even need the overhead of regular expressions:

if (proposedFilename.IndexOfAny(System.IO.Path.GetInvalidFileNameChars()) != -1)
{
  MessageBox.Show("The filename is invalid");
  return;
}
2008-09-19 06:34
by Isak Savo
simple right parenthesy placement mishap in the if statement, but awesome thanks - Game_Overture 2008-09-19 06:47
So "C::::::::" is a valid filename - Andrew 2010-02-18 20:25
Andrew: no, this is just a rough basic check for characters.. There are lots of other reasons accessing a file with proposedFilename may fail: file (doesn't) exist, read-only, path too long, directory doesn't exist, name is a dos device files (like 'nul' or 'prn') etc - Isak Savo 2010-03-02 09:30


6

This isn't as simple as just checking whether the file name contains any of System.IO.Path.GetInvalidFileNameChars (as mentioned in a couple of other answers already).

For example what if somebody enters a name that contains no invalid chars but is 300 characters long (i.e. greater than MAX_PATH) - this won't work with any of the .NET file APIs, and only has limited support in the rest of windows using the \?\ path syntax. You need context as to how long the rest of the path is to determine how long the file name can be. You can find more information about this type of thing here.

Ultimately all your checks can reliably do is prove that a file name is not valid, or give you a reasonable estimate as to whether it is valid. It's virtually impossible to prove that the file name is valid without actually trying to use it. (And even then you have issues like what if it already exists? It may be a valid file name, but is it valid in your scenario to have a duplicate name?)

2008-09-19 07:14
by Greg Beech


0

Why not using the System.IO.FileInfo class, together with the DirectoryInfo class you have a set of usefull methods.

2008-09-19 06:32
by Drejc


0

Path.GetInvalidFileNameChars - Is not a good way. Try this:

if(@"C:\A.txt".IndexOfAny(System.IO.Path.GetInvalidFileNameChars()) != -1)
{
  MessageBox.Show("The filename is invalid");
  return;
}
2008-12-10 14:41
by Viacheslav Ivanov
It depends on what you want to achive. I came here from a google query and I want to check only for valid file names (not a full path) and I'm pretty sure you can't have a file called "c:\a.txt" inside a folder ; - Jürgen Steinblock 2010-06-18 11:20
Yes, for checking only name of the file Path.GetInvalidFileNameChars() acceptable, but Naming Conventions (http://msdn.microsoft.com/en-us/library/aa365247.aspx#naming_conventions) have a lot of interesting rules - Viacheslav Ivanov 2010-09-13 08:26
Ads