vote up 6 vote down star
1

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 missing?

using System;
using System.IO;

namespace ConsoleApplication1
{
    class Program
    {
    	static void Main(string[] args)
    	{
    		string illegal = "\"M<>\"\\a/ry/ h**ad:>> a\\/:*?\"<>| li*tt|le|| la\"mb.?";

    		illegal = illegal.Trim(Path.GetInvalidFileNameChars());
    		illegal = illegal.Trim(Path.GetInvalidPathChars());

    		Console.WriteLine(illegal);
    		Console.ReadLine();
    	}
    }
}
flag

Trim removes characters from the beginning and end of strings. However, you probably should ask why the data is invalid, and rather than try and sanitize/fix the data, reject the data. – sixlettervariables Sep 28 '08 at 15:54
Unix style names are not valid on Windows and i don't want to deal with 8.3 shortnames. – Gary Willoughby Oct 16 at 12:04

6 Answers

vote up 17 vote down check

Try something like this instead;

string illegal = "\"M\"\\a/ry/ h**ad:>> a\\/:*?\"| li*tt|le|| la\"mb.?";

foreach (char c in Path.GetInvalidFileNameChars())
{
    illegal = illegal.Replace(c.ToString(), ""); 
}
foreach (char c in Path.GetInvalidPathChars())
{
    illegal = illegal.Replace(c.ToString(), ""); 
}

But I have to agree with the comments, I'd probably try to deal with the source of the illegal paths, rather than try to mangle an illegal path into a legitimate but probably unintended one.

Edit: Or a potentially 'better' solution, using Regex's.

string illegal = "\"M\"\\a/ry/ h**ad:>> a\\/:*?\"| li*tt|le|| la\"mb.?";
string regexSearch = string.Format("{0}{1}",
                     new string(Path.GetInvalidFileNameChars()), 
                     new string(Path.GetInvalidPathChars()));
Regex r = new Regex(string.Format("[{0}]", Regex.Escape(regexSearch)));
illegal = r.Replace(illegal, "");

Still, the question begs to be asked, why you're doing this in the first place.

link|flag
I don't know if I should +1 your answer for having such an ill-performing solution that will push the user away from that path, or if I should +1 your answer for it actually answering his question! :) – sixlettervariables Sep 28 '08 at 16:05
I wonder if regex-replace is more performant here. – Michael Stum Sep 28 '08 at 16:07
@Michael Stum: they get 'compiled' and should be some sort of state machine, but it would be naive to assume they are guaranteed to be any more efficient under the hood than a loop. – sixlettervariables Sep 28 '08 at 16:10
On something the length of a path, it probably wouldn't make that much of a difference. On a longer string, I imagine the regex would be faster though. – Matthew Scharley Sep 28 '08 at 16:15
+1 for being number one on my google search – WOPR Mar 27 at 1:07
vote up 6 vote down

For starters, Trim only removes characters from the beginning or end of the string. Secondly, you should evaluate if you really want to remove the offensive characters, or fail fast and let the user know their filename is invalid. My choice is the latter, but my answer should at least show you how to do things the right AND wrong way:

StackOverflow question showing how to check if a given string is a valid file name. Note you can use the regex from this question to remove characters with a regular expression replacement (if you really need to do this).

link|flag
I especially agree with the second advice. – OregonGhost Sep 28 '08 at 15:59
vote up 1 vote down

String.Trim() only removes chars from the beginning and end of the string.

link|flag
vote up 1 vote down

I think it is much easier to validate using a regex and specifiing which characters are allowed, instead of trying to check for all bad characters. See these links: http://www.c-sharpcorner.com/UploadFile/prasad_1/RegExpPSD12062005021717AM/RegExpPSD.aspx http://www.windowsdevcenter.com/pub/a/oreilly/windows/news/csharp_0101.html

Also, do a search for "regular expression editor"s, they help a lot. There are some around which even output the code in c# for you.

link|flag
vote up 1 vote down

I use regular expressions to achieve this. First, I dynamically build the regex.

string regex = "[" + Path.GetInvalidFileNameChars() + "]";
Regex removeInvalidChars = new Regex(regex, RegexOptions.Singleline | RegexOptions.Compiled | RegexOptions.CultureInvariant);

Then I just call removeInvalidChars.Replace to do the find and replace. This can obviously be extended to cover path chars as well.

link|flag
vote up 0 vote down

Throw an exception.

if ( fileName.IndexOfAny(Path.GetInvalidFileNameChars()) > -1 )
            {
                throw new ArgumentException();
            }
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.