Skip to content

Instantly share code, notes, and snippets.

@raducugheorghe
Created December 9, 2014 12:51
Show Gist options
  • Save raducugheorghe/66e4e44b69caf2e4c7ab to your computer and use it in GitHub Desktop.
Save raducugheorghe/66e4e44b69caf2e4c7ab to your computer and use it in GitHub Desktop.
[C#] Sanitize string to use as folder name
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