vote up 8 vote down star
2

Hey does anyone have a good regular expression they'd like to share 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
}

Many thanks! -Jay

flag

71% accept rate

7 Answers

vote up 15 vote down check

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;
}
link|flag
simple right parenthesy placement mishap in the if statement, but awesome thanks! – Balk Sep 19 '08 at 6:47
vote up 0 vote down

As FRED points out it fails. To keep on the current track you would need to do the following

string proposedFilename = @"C:\A.txt";
if (proposedFilename.Substring(proposedFilename.LastIndexOf('\\') + 1).Split(System.IO.Path.GetInvalidFileNameChars()).Length > 1)
{ MessageBox.Show("The filename is invalid"); return; }

Or how about...

string proposedFilename = @"C:\A.txt";
try
 {
     System.IO.Path.GetFileName(proposedFilename);
     MessageBox.Show("The filename is invalid");
     return true;
 }
 catch
 {
     MessageBox.Show("The filename is invalid");
     return false;
 }
link|flag
vote up 0 vote down

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;
}
link|flag
vote up 2 vote down

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?)

link|flag
vote up 0 vote down

I am no regular expressions fundi however I use Regular Expression Library (http://regexlib.com) for all my regular expressions needs. Sometimes it is faster then making your own.

link|flag
vote up 0 vote down

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

link|flag
vote up 6 vote down

System.IO.Path.GetInvalidFileNameChars will give you a platform independent list of file name characters you should check against.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.