The software I am working with has net.schmizz.sshj jars as part of it. I am trying to use the same to write a csv bytestring into a csv file on an SFTP server
I have searched quite a bit but not able to find a method in this library which can take an InputStream, the only options seem to take an existing file path or a File object.
I need to be able to do this without actually creating a file on the local side as the software is SaaS delivered and we dont have permission to create an actual file on the hosting server. The file should only get created on the SFTP server
Is there any option around this? Or the only option is to go with some other library?