vote up 8 vote down star

Is there a method in the System.IO namespace that checks the validity of a filename?

Example: 'C:\foo\bar' would validate ':"~-*' would not

a little trickier: 'X:\foo\bar' would validate is there is an X: drive on the system, but wouldn't otherwise.

I suppose I could write such a method myself, but I'm more interested in a built-in one.

flag
Does the "not that it exits" require validating the folders exist or no? What are the boundaries of the check? That the drive exists and that the characters are all valid? – BenAlabaster Jan 7 at 21:14

11 Answers

vote up 5 vote down

You can get a list of invalid characters from Path.GetInvalidPathChars and GetInvalidFileNameChars as discussed in this question.

As Micah points out, there is Directory.GetLogicalDrives to get a list of valid drives.

link|flag
vote up 5 vote down

Just do

bool bOk = false;
try
{
  new System.IO.FileInfo(fileName);
  bOk = true;
}
catch (ArgumentException)
{
}
catch (System.IO.PathTooLongException)
{
}
catch (NotSupportedException)
{
}
if (!bOk)
{
  ...
}
else
{
  ...
}

For creating a FileInfo instance the file does not need to exist.

Edit: You can afterward do FileInfo.Exists to check if the file exists or not.

Edit2: Added better exception handling according to MSDN documentation for FileInfo constructor.

link|flag
vote up 0 vote down

Use the static GetInvalidFileNameChars method on the Path class in the System.IO namespace to determine what characters are illegal in a file name.

To do so in a path, call the static GetInvalidPathChars method on the same class.

To determine if the root of a path is valid, you would call the static GetPathRoot method on the Path class to get the root, then use the Directory class to determine if it is valid. Then you can validate the rest of the path normally.

link|flag
vote up 0 vote down

There is such a method somewhere in the framework, and I'm sure someone will post it here. However, what I remember also is that this method is imperfect (i.e., buggy), and has issues with things like localization.

link|flag
vote up 2 vote down

Even if the filename is valid, you may still want to touch it to be sure the user has permission to write.

If you won't be thrashing the disk with hundreds of files in a short period of time, I think creating an empty file is a reasonable approach.

If you really want something lighter, like just checking for invalid chars, then compare your filename against Path.GetInvalidFileNameChars().

link|flag
vote up 0 vote down

Probably the bast way is to build a custom method mixing a combination of regex and small look up on your file system (to see the drives, for example)

link|flag
vote up 0 vote down

I don't know of anything out of the box that can just validate all of that for you, however the Path class in .NET can help you out tremendously.

For starters, it has:

 char[] invalidChars = Path.GetInvalidFileNameChars(); //returns invalid charachters

Or:

Path.GetPathRoot(string); // will return the root.
link|flag
vote up 0 vote down

Several of the System.IO.Path methods will throw exceptions if the path or filename is invalid:

  • Path.IsPathRooted()
  • Path.GetFileName()

http://msdn.microsoft.com/en-us/library/system.io.path_methods.aspx

link|flag
vote up 0 vote down

There are several methods you could use that exist in the System.IO namespace:

Directory.GetLogicalDrives() // Returns an array of strings like "c:\"
Path.GetInvalidFileNameChars() // Returns an array of characters that cannot be used in a file name
Path.GetInvalidPathChars() // Returns an array of characters that cannot be used in a path.

As suggested you could then do this:

bool IsValidFilename(string testName)
{
        Regex containsABadCharacter = new Regex("[" + Regex.Escape(System.IO.Path.InvalidPathChars) + "]");
        if (containsABadCharacter.IsMatch(testName) { return false; };

        //Check for drive
        if(Director.GetLogicalDrives.Contains(Path.GetPathRoot(textName)))


        // other checks for UNC, drive-path format, etc

        return true;
}
link|flag
Not going to vote down, but you really should give credit when using sample code from other people, especially when it's not really correct. stackoverflow.com/questions/62771/… – Eugene Katz Jan 7 at 21:30
vote up 0 vote down

This will get you the drives on the machine:

System.IO.DriveInfo.GetDrives()

These two methods will get you the bad characters to check:

System.IO.Path.GetInvalidFileNameChars();
System.IO.Path.GetInvalidPathChars();
link|flag
vote up 0 vote down

I've had luck using regular expressions as others have shown.

One thing to keep in mind is that Windows at least prohibits some filenames that otherwise containlegal characters. A few come to mind: com, nul, prn.

I don't have it with me now, but I have a regex that takes these filename into consideration. If you want I can post it, otherwise I'm sure you can find it the same way I did: Google.

-Jay

link|flag

Your Answer

Get an OpenID
or

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