vote up 1 vote down star

I have an application which I've developed for a friend. What this application does is send a POST request to the vb forum software and logs someone in (with out setting cookies or anything).

Once the user is logged in i create a variable that creates a path on their local machine.

c:\tempfolder\date\username

The problem is that some usernames are throwing "Illegal chars" exception. for example if my username was mas|fenix it would throw an exception..

Path.Combine(Environment.GetFolderPath(System.Environment.SpecialFolder.CommonApplicationData), DateTime.Now.ToString("ddMMyyhhmm") + "-" + form1.username)

I dont want to remove it from the string, but a folder with their username is created through FTP on a server. ANd this leads to my second question. If i am creating a folder on the server can I leave the "illegal chars" in? I only ask this because the server is linux based, and I am not sure if linux accepts it or not..

EDIT: IT seems that URL encode is NOT what I want.. Heres What I want to do:

old username = mas|fenix new username = mas%xxfenix where %xx is the ascii value or any other value that would easily identify the character...

flag

4 Answers

vote up 1 vote down check

UrlEncoding will do what you are suggesting here. With C#, you simply use HttpUtility, as mentioned.

You can also Regex the illegal characters and then replace, but this gets far more complex, as you will have to have some form of state machine (switch ... case, for example) to replace with the correct characters. Since UrlEncode does this up front, it is rather easy.

As for Linux versus windows, there are some characters that are acceptable in Linux that are not in Windows, but I would not worry about that, as the folder name can be returned by decoding the Url string, using UrlDecode, so you can round trip the changes.

link|flag
vote up 4 vote down

Url Encoding is easy in .NET. Use:

System.Web.HttpUtility.UrlEncode(string url)

If that'll be decoded to get the folder name, you'll still need to exclude characters that can't be used in folder names (*, ?, /, etc.)

link|flag
Does it encode every character thats not part of the alphabet? – masfenix Feb 22 at 19:02
URL encoding converts characters that are not allowed in a URL into character-entity equivalents. List of unsafe characters: blooberry.com/indexdot/html/… – Ian Robinson Feb 22 at 19:05
MSDN Link on HttpUtility.UrlEncode: msdn.microsoft.com/en-us/library/… – Ian Robinson Feb 22 at 19:06
Please read my edit. – masfenix Feb 22 at 19:15
It is good practice to put the full System.Web... part in your answer, it saves a lot of people a little time :) thanks – Liam Apr 24 at 12:09
vote up 3 vote down

You should encode only the user name or other part of the URL that could be invalid. URL encoding a URL can lead to problems since something like this:

string url = HttpUtility.UrlEncode("http://www.google.com/search?q=Example");

Will yield

http%3a%2f%2fwww.google.com%2fsearch%3fq%3dExample

This is obviously not going to work well. Instead, you should encode ONLY the value of the key/value pair in the query string, like this:

string url = "http://www.google.com/search?q=" + HttpUtility.UrlEncode("Example");

Hopefully that helps. Also, as teedyay mentioned, you'll still need to make sure illegal file-name characters are removed or else the file system won't like the path.

link|flag
1  
Using the HttpUtility.UrlPathEncode method should prevent the problem you're describing here. – DJ Pirtu Mar 9 at 10:08
vote up 0 vote down

Incorporate this to make file system safe folder names:

http://stackoverflow.com/questions/333175/is-there-a-way-of-making-strings-file-path-safe-in-c

link|flag

Your Answer

Get an OpenID
or

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