On 15 October 2010 09:53, sebb <sebbaz@gmail.com> wrote:
> On 15 October 2010 02:00, chenxuejie <chen_xuejie@nec.cn> wrote:
>> Hi all
>>
>> The action is "server to which the client is connected to append to a given
>> file on the other server"
>> The result is the new file replaced the remote file.
>>
>> I think FTPClient.java should change as follows:
>>
>> public boolean remoteAppend(String filename) throws IOException
>> {
>> if (__dataConnectionMode == ACTIVE_REMOTE_DATA_CONNECTION_MODE ||
>> __dataConnectionMode == PASSIVE_REMOTE_DATA_CONNECTION_MODE)
>>
>> // return FTPReply.isPositivePreliminary(stor(filename));
>> return FTPReply.isPositivePreliminary(appe(filename));
>> return false;
>> }
>>
>> thanks
>
> Thanks for the report; the code will be changed as you suggest.
>
I created the following JIRA issue to track this:
https://issues.apache.org/jira/browse/NET-341
---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@commons.apache.org
For additional commands, e-mail: user-help@commons.apache.org
|