This file contains 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, ""); | |
} |