show/hide this revision's text 2 link to steve cooper's answer

You can get a list of invalid characters from Path.GetInvalidPathChars

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

And GetInvalidFileNameChars

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

UPD: See Steve Cooper's suggestion on how to use these in a regular expression.

show/hide this revision's text 1