Welcome to the Xceed Community | Help
Community Search  

Error when I downloading file whit accent caracter

Sort Posts: Previous Next
  •  01-09-2008, 8:30 AM Post no. 5290

    Error when I downloading file whit accent caracter

    Hello,

    I have a problem when I want to download a file with accent caracter (eg: é è ê ...)

    Could you help me to find an issue.

    Regards
  •  01-09-2008, 8:31 AM Post no. 5291 in reply to 5290

    Re: Error when I downloading file whit accent caracter

    Oups...

    The problem is Reply 550 file not found
  •  01-10-2008, 3:45 AM Post no. 5292 in reply to 5291

    Re: Error when I downloading file whit accent caracter

    I have tried your sample but the problem is the same...
  •  01-10-2008, 9:03 AM Post no. 5293 in reply to 5290

    Re: Error when I downloading file whit accent caracter

    We are reproducing this issue. We created a bug report and we will investigate this. We will keep you posted on any new developments.
    Charles Bérubé-Rémillard
    Technical Support
    Xceed Software Inc.
  •  01-17-2008, 11:37 AM Post no. 5294 in reply to 5293

    Re: Error when I downloading file whit accent caracter

    Hello,

    I can see in the forum this probleme has been discovered since 2004...

    I need a solution, your product is good, but it is not free.... And for my customers , I'm french, I can't ask them don't use special character in their filename.

    Regards
  •  01-17-2008, 1:21 PM Post no. 5295 in reply to 5294

    Re: Error when I downloading file whit accent caracter

    After doing some research and some testing, it seems that setting the Encoding to Default resolves the issue.

    e.g.,
    <code>
    FtpClient ftp = new FtpClient();

    try
    {

    ftp.Connect( hostname );
    ftp.Login( username, password );
    ftp.Encoding = Encoding.Default;
    ftp.ChangeCurrentFolder( "TestFolder" );

    ftp.ReceiveFile( "éèê°.txt", @"D:\112630\éèê°.txt" );
    }
    finally
    {
    if( ftp.Connected )
    ftp.Disconnect();
    }
    </code>
    Charles Bérubé-Rémillard
    Technical Support
    Xceed Software Inc.
View as RSS news feed in XML
Contact | Site Map | Reviews | Legal Terms of Use | Trademarks | Privacy Statement Copyright 2008 Xceed Software Inc.