通过FTP上传文件的问题

通过FTP上传文件的问题

本文介绍了通过FTP上传文件的问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

您好,



我使用您的代码通过FTP与产品互动。

昨天它完美无缺,现在我总是获得当我发送文件时出错。

当我使用Filezilla手动尝试相同时,它可以工作。



这里我的代码简化了

Hello,

I use your code to interact with a product by FTP.
Yesterday it works perfectly and now I always obtain an error when i send my file.
When i try to the same manually by using Filezilla, it works.

here my code simplify

nsFTP::CFTPClient ftpClient;
nsFTP::CLogonInfo logonInfo("192.168.1.1", 5551, "anonymous","[email protected]");

ftpClient.Login(logonInfo);
success = ftpClient.IsConnected();

success = ftpClient.UploadFile(mStructure.PayloadPath.c_str(),"/jpsumo_update.plf");





所以我只需登录FTP,然后检查我是否已连接。答案是对的,因为我已连接。

然后我尝试上传文件。

昨天,文件被完美复制,现在,我总是得到假。当我用Filezilla检查产品时。文件在这里,但他是空的(它的长度是0字节)。



你知道为什么它之前有效但不是todau。我确切地说,我在这部分没有任何改变。



谢谢,并且尊重,



Emile GAULTIER。



So i just login on the FTP, theni check if i am connected. The answer is true so for i am connected.
Then i try to upload the file.
Yesterday, the file was copied perfectly and now, I obtain always false. When i check the product with Filezilla. the file is here but he is empty (its length is 0 byte).

Do you have an idea why it works before but not todau. I precise that i change nothing on this part.

Thanks and regard,

Emile GAULTIER.

推荐答案

这篇关于通过FTP上传文件的问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-31 22:49