我正在学习FtpWebRequest/ftpwebresponse的用法,发现如果在Create的时候传入中文会出问题,请问各位老大怎么解决呢?FtpWebRequest ftp =
                (FtpWebRequest)WebRequest.Create(@"ftp://user:[email protected]/中文.txt");
            FtpWebResponse ftpResp=
                (FtpWebResponse)ftpResp.GetResponse();
            responseStream = ftpResp.GetResponseStream();