Created
December 9, 2014 12:51
-
-
Save raducugheorghe/66e4e44b69caf2e4c7ab to your computer and use it in GitHub Desktop.
[C#] Sanitize string to use as folder name
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static string SanitizeFolderName(string name) | |
{ | |
string regexSearch = new string(Path.GetInvalidFileNameChars()) + new string(Path.GetInvalidPathChars()); | |
var r = new Regex(string.Format("[{0}]", Regex.Escape(regexSearch))); | |
return r.Replace(name, ""); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment