我用以下代码在ftp服务器端建立文件夹:
public void MakeDir(string dirName)
{
    try
    {
    string uri = "ftp://" + ftpServerIP + "/" + dirName;
    Connect(uri);//连接
    reqFTP.Method = WebRequestMethods.Ftp.MakeDirectory;
    FtpWebResponse response = (FtpWebResponse)reqFTP.GetResponse();
    response.Close();
    }
    catch (Exception ex)
    {
    MessageBox.Show(ex.Message);
    }
}如果我的文件夹名“1#201001”中有“#”,建立的文件夹就变成“1”。
请问如何能把含有“#”的文件夹名建好
谢谢。