How to remove illegal characters from path and filenames?

前端 未结 29 3351
离开以前
离开以前 2020-11-22 17:18

I need a robust and simple way to remove illegal path and file characters from a simple string. I\'ve used the below code but it doesn\'t seem to do anything, what am I miss

29条回答
  •  渐次进展
    2020-11-22 17:37

    I absolutely prefer the idea of Jeff Yates. It will work perfectly, if you slightly modify it:

    string regex = String.Format("[{0}]", Regex.Escape(new string(Path.GetInvalidFileNameChars())));
    Regex removeInvalidChars = new Regex(regex, RegexOptions.Singleline | RegexOptions.Compiled | RegexOptions.CultureInvariant);
    

    The improvement is just to escape the automaticially generated regex.

提交回复
热议问题