Removing the second string works with FileZilla but fails with the sftp
command line utility.

On Wed, May 5, 2010 at 16:13, Guillaume Nodet <gno...@gmail.com> wrote:

> Yeah, that's what I'm trying.
> Let me try with removing the double name though.
>
>
> On Wed, May 5, 2010 at 15:50, Sai Pullabhotla <
> sai.pullabho...@jmethods.com> wrote:
>
>> How about something like this:
>>
>>    protected void sendAbsoluteName(int id, File file) throws IOException {
>>        Buffer buffer = new Buffer();
>>        buffer.putByte((byte) SSH_FXP_NAME);
>>        buffer.putInt(id);
>>        buffer.putInt(1);
>>        String path = file.getPath();
>>        if(File.separatorChar != '/') {
>>            path = path.replace(File.separatorChar, '/');
>>        }
>>        if(path.charAt(0) != '/') {
>>            path = '/' + path;
>>        }
>>        buffer.putString(path);
>>        //buffer.putString(file.getPath());
>>        writeAttrs(buffer, file);
>>        send(buffer);
>>    }
>>
>> Regards,
>> Sai Pullabhotla
>>
>>
>>
>>
>>
>> On Wed, May 5, 2010 at 8:45 AM, Sai Pullabhotla
>> <sai.pullabho...@jmethods.com> wrote:
>> > I removed the second call to place the path in the buffer and seems to
>> > be working fine.
>> >
>> > Regards,
>> > Sai Pullabhotla
>> >
>>
>
>
>
> --
> Cheers,
> Guillaume Nodet
> ------------------------
> Blog: http://gnodet.blogspot.com/
> ------------------------
> Open Source SOA
> http://fusesource.com
>
>
>


-- 
Cheers,
Guillaume Nodet
------------------------
Blog: http://gnodet.blogspot.com/
------------------------
Open Source SOA
http://fusesource.com

Reply via email to