Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an application which I've developed for a friend. It sends 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 don't 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.. Here's 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.

share|improve this question
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 – rizzle Feb 22 '09 at 21:03

8 Answers

up vote 44 down vote accepted

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.

share|improve this answer
1  
This actually encode : and // in http:// – CantGetANick Jan 8 at 9:15

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.

share|improve this answer
17  
Using the HttpUtility.UrlPathEncode method should prevent the problem you're describing here. – DJ Pirtu Mar 9 '09 at 10:08
6  
@DJ Pirtu: It's true that UrlPathEncode won't make those undesired changes in the path, however it also won't encode anything after the ? (since it assumes the query string is already encoded). In Dan Herbert's example it looks like he's pretending Example is the text that requires encoding, so HttpUtility.UrlPathEncode("http://www.google.com/search?q=Example"); won't work. Try it with ?q=Ex&ple (where the desired result is ?q=Ex%26ple). It won't work because (1) UrlPathEncode doesn't touch anything after ?, and (2) UrlPathEncode doesn't encode & anyway. – Tim Goodman Nov 29 '10 at 18:21
1  
See here: connect.microsoft.com/VisualStudio/feedback/details/551839/… I should add that of course it's good that UrlPathEncode doesn't encode &, because you need that to delimit your query string parameters. But there are times when you want encoded ampersands as well. – Tim Goodman Nov 29 '10 at 18:23

I've been experimenting with the various methods .NET provide for URL encoding. Perhaps the following table will be useful (as output from a test app I wrote):

Unencoded UrlEncoded UrlEncodedUnicode UrlPathEncoded EscapedDataString EscapedUriString HtmlEncode HtmlAttributeEncode HexEscape
A         A          A                 A              A                 A                A          A                   %41
B         B          B                 B              B                 B                B          B                   %42
C         C          C                 C              C                 C                C          C                   %43
D         D          D                 D              D                 D                D          D                   %44

a         a          a                 a              a                 a                a          a                   %61
b         b          b                 b              b                 b                b          b                   %62
c         c          c                 c              c                 c                c          c                   %63
d         d          d                 d              d                 d                d          d                   %64

0         0          0                 0              0                 0                0          0                   %30
1         1          1                 1              1                 1                1          1                   %31
2         2          2                 2              2                 2                2          2                   %32
3         3          3                 3              3                 3                3          3                   %33

[space]   +          +                 %20            %20               %20              [space]    [space]             %20
!         !          !                 !              !                 !                !          !                   %21
"         %22        %22               "              %22               %22              "     "              %22
#         %23        %23               #              %23               #                #          #                   %23
$         %24        %24               $              %24               $                $          $                   %24
%         %25        %25               %              %25               %25              %          %                   %25
&         %26        %26               &              %26               &                &      &               %26
'         %27        %27               '              '                 '                '      '               %27
(         (          (                 (              (                 (                (          (                   %28
)         )          )                 )              )                 )                )          )                   %29
*         *          *                 *              *                 *                *          *                   %2A
+         %2b        %2b               +              %2B               +                +          +                   %2B
,         %2c        %2c               ,              %2C               ,                ,          ,                   %2C
-         -          -                 -              -                 -                -          -                   %2D
.         .          .                 .              .                 .                .          .                   %2E
/         %2f        %2f               /              %2F               /                /          /                   %2F
:         %3a        %3a               :              %3A               :                :          :                   %3A
;         %3b        %3b               ;              %3B               ;                ;          ;                   %3B
<         %3c        %3c               <              %3C               %3C              &lt;       &lt;                %3C
>         %3e        %3e               >              %3E               %3E              &gt;       >                   %3E
=         %3d        %3d               =              %3D               =                =          =                   %3D
?         %3f        %3f               ?              %3F               ?                ?          ?                   %3F
@         %40        %40               @              %40               @                @          @                   %40
[         %5b        %5b               [              %5B               %5B              [          [                   %5B
]         %5d        %5d               ]              %5D               %5D              ]          ]                   %5D
\         %5c        %5c               \              %5C               %5C              \          \                   %5C
^         %5e        %5e               ^              %5E               %5E              ^          ^                   %5E
_         _          _                 _              _                 _                _          _                   %5F
`         %60        %60               `              %60               %60              `          `                   %60
{         %7b        %7b               {              %7B               %7B              {          {                   %7B
}         %7d        %7d               }              %7D               %7D              }          }                   %7D
|         %7c        %7c               |              %7C               %7C              |          |                   %7C
~         %7e        %7e               ~              ~                 ~                ~          ~                   %7E

Ā         %c4%80     %u0100            %c4%80         %C4%80            %C4%80           Ā          Ā                   [OoR]
ā         %c4%81     %u0101            %c4%81         %C4%81            %C4%81           ā          ā                   [OoR]
Ē         %c4%92     %u0112            %c4%92         %C4%92            %C4%92           Ē          Ē                   [OoR]
ē         %c4%93     %u0113            %c4%93         %C4%93            %C4%93           ē          ē                   [OoR]
Ī         %c4%aa     %u012a            %c4%aa         %C4%AA            %C4%AA           Ī          Ī                   [OoR]
ī         %c4%ab     %u012b            %c4%ab         %C4%AB            %C4%AB           ī          ī                   [OoR]
Ō         %c5%8c     %u014c            %c5%8c         %C5%8C            %C5%8C           Ō          Ō                   [OoR]
ō         %c5%8d     %u014d            %c5%8d         %C5%8D            %C5%8D           ō          ō                   [OoR]
Ū         %c5%aa     %u016a            %c5%aa         %C5%AA            %C5%AA           Ū          Ū                   [OoR]
ū         %c5%ab     %u016b            %c5%ab         %C5%AB            %C5%AB           ū          ū                   [OoR]

The columns represent encodings as follows:

UrlEncoded: HttpUtility.UrlEncode

UrlEncodedUnicode: HttpUtility.UrlEncodeUnicode

UrlPathEncoded: HttpUtility.UrlPathEncode

EscapedDataString: Uri.EscapeDataString

EscapedUriString: Uri.EscapeUriString

HtmlEncode: HttpUtility.HtmlEncode

HtmlAttributeEncode: HttpUtility.HtmlAttributeEncode

HexEscape: Uri.HexEscape

NOTES:

  1. HexEscape can only handle the first 255 characters. Therefore it throws an ArgumentOutOfRange exception for the Latin A-Extended characters (eg Ā).

  2. The characters in my table are not ordered exactly in ascending ASCII/Unicode order (eg [, ], \ are out of order).

share|improve this answer
3  
Thanks for this table, very useful. – GuiSim Jul 11 '12 at 12:17
Very useful overview! – jerone Oct 12 '12 at 13:29
Thanks a lot for this useful summary! In my opinion this should be part of the MSDN documentation ;-) – hfrmobile Oct 26 '12 at 11:25
This is a fantastic answer. Turns out I wanted to use Uri.EscapeDataString and not include System.Web. Thanks for this table. – Seravy Dec 10 '12 at 7:49
Better table and more information than on the MSDN. +1 – ppumkin Dec 21 '12 at 10:16
show 1 more comment

Better way is to use

Uri.EscapeUriString

to not reference Full Profile of .net 4.

share|improve this answer
Totally agree since often the "Client Profile" is enough for apps using System.Net but not using System.Web ;-) – hfrmobile Sep 7 '12 at 17:08
1  
OP is talking about checking it for file system compatibility, so this won't work. Windows disallowed character set is '["/", "\\", "<", ">", ":", "\"", "|", "?", "*"]' but many of these don't get encoded using EscapedUriString (see table below - thanks for that table @Simon Tewsi) ..."creates a path on their local machine" -OP UrlEncoded takes care of almost all of the problems, but doesn't solve the problem with "%" or "%3f" being in original input, as a "decode" will now be different than original. – m1m1k Feb 7 at 0:32
1  
just to make it clear: THIS answer WONT WORK for file systems – m1m1k Feb 7 at 0:41
In addition, starting with the .NET Framework 4.5, the Client Profile has been discontinued and only the full redistributable package is available. – twomm Feb 19 at 13:46

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.)

share|improve this answer
Does it encode every character thats not part of the alphabet? – masfenix Feb 22 '09 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/topics/urlencoding.htm – Ian Robinson Feb 22 '09 at 19:05
MSDN Link on HttpUtility.UrlEncode: msdn.microsoft.com/en-us/library/4fkewx0t.aspx – Ian Robinson Feb 22 '09 at 19:06
Please read my edit. – masfenix Feb 22 '09 at 19:15
5  
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 '09 at 12:09
show 1 more comment

If you can't see System.Web, change your project settings. The target framework should be ".NET Framework 4" instead of ".NET Framework 4 Client Profile"

share|improve this answer
1  
In my opinion developers should know about ".NET Profiles" and they should use the correct one for their purposes! Just adding the full profile in order to get (e.g System.Web) without really knowing why they add the full profile, isn't very smart. Use "Client Profile" for your client apps and the full profile only when needed (e.g. a WinForms or WPF client should use client profile and not full profile)! e.g. I don't see a reason using the HttpServerUtility in a client app ^^ ... if this is needed then there is something wrong with the design of the app! – hfrmobile Oct 26 '12 at 11:28
Really? Do don't ever see a need for a client app to construct a URL? What do you do for a living - janitorial duties? – sproketboy Mar 26 at 20:33

Ideally these would go in a class called "FileNaming" or maybe just rename Encode to "FileNameEncode". Note: these are not designed to handle Full Paths, just the folder and/or file names. Ideally you would Split("/") your full path first and then check the pieces. And obviously instead of a union, you could just add the "%" character to the list of chars not allowed in Windows, but I think it's more helpful/readable/factual this way. Decode() is exactly the same but switches the Replace(Uri.HexEscape(s[0]), s) "escaped" with the character.

public static List<string> urlEncodedCharacters = new List<string>
{
  "/", "\\", "<", ">", ":", "\"", "|", "?", "%" //and others, but not *
};
//Since this is a superset of urlEncodedCharacters, we won't be able to only use UrlEncode() - instead we'll use HexEncode
public static List<string> specialCharactersNotAllowedInWindows = new List<string>
{
  "/", "\\", "<", ">", ":", "\"", "|", "?", "*" //windows dissallowed character set
};

    public static string Encode(string fileName)
    {
        //CheckForFullPath(fileName); // optional: make sure it's not a path?
        List<string> charactersToChange = new List<string>(specialCharactersNotAllowedInWindows);
        charactersToChange.AddRange(urlEncodedCharacters.
            Where(x => !urlEncodedCharacters.Union(specialCharactersNotAllowedInWindows).Contains(x)));   // add any non duplicates (%)

        charactersToChange.ForEach(s => fileName = fileName.Replace(s, Uri.HexEscape(s[0])));   // "?" => "%3f"

        return fileName;
    }

Thanks @simon-tewsi for the very usefull table above!

share|improve this answer
also usefull: Path.GetInvalidFileNameChars() – m1m1k Feb 8 at 22:06

In addition to @Dan Herbert's answer , You we should encode just the values generally.

Split has params parameter Split('&','='); expression firstly split by & then '=' so odd elements are all values to be encoded shown below.

public static void EncodeQueryString(ref string queryString)
{
    var array=queryString.Split('&','=');
    for (int i = 0; i < array.Length; i++) {
        string part=array[i];
        if(i%2==1)
        {               
            part=System.Web.HttpUtility.UrlEncode(array[i]);
            queryString=queryString.Replace(array[i],part);
        }
    }
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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