English
Español
Português
한국어
日本語
中文
Deutsch
Italiano
Xceed Home
>
Community
Welcome to the Xceed Community
Sign in
|
Join
|
Help
Community Search
Xceed Community
»
.NET and ASP.NET class librari...
»
Xceed FTP for .NET
»
Re: Error when I downloading file whit accent caracter
Error when I downloading file whit accent caracter
Sort Posts:
Oldest to newest
Newest to oldest
Previous
Next
01-09-2008, 8:30 AM
Post no.
5290
seb.49
Joined on 12-28-2007
Posts 6
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
Report abuse
01-09-2008, 8:31 AM
Post no.
5291
in reply to
5290
seb.49
Joined on 12-28-2007
Posts 6
Re: Error when I downloading file whit accent caracter
Oups...
The problem is Reply 550 file not found
Report abuse
01-10-2008, 3:45 AM
Post no.
5292
in reply to
5291
seb.49
Joined on 12-28-2007
Posts 6
Re: Error when I downloading file whit accent caracter
I have tried your sample but the problem is the same...
Report abuse
01-10-2008, 9:03 AM
Post no.
5293
in reply to
5290
CharlesB
Joined on 05-29-2007
Canada
Posts 456
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.
Report abuse
01-17-2008, 11:37 AM
Post no.
5294
in reply to
5293
seb.49
Joined on 12-28-2007
Posts 6
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
Report abuse
01-17-2008, 1:21 PM
Post no.
5295
in reply to
5294
CharlesB
Joined on 05-29-2007
Canada
Posts 456
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.
Report abuse
Contact
|
Site Map
|
Reviews
|
Legal
Terms of Use
|
Trademarks
|
Privacy Statement
Copyright 2008 Xceed Software Inc.