I'm looking for a way to write in a file in sftp without transfer the file. I work with jsch and i saw that with chilkat there was a way to do this :
CkSFtp sftp = new CkSFtp();
sftp.WriteFileText(handle, "ansi", "Hey !");
sftp.CloseHandle(handle);
but with jsch i still haven't figured out a way to do it. And I couldn't get the chilkat library to work.
So, do you have solutions ?