SFTP PutFile using a stream does not set file permissions
I am trying to use the .NET Assembly using the following code:
The file transfers successfully but the permissions do not update. Using the
Any ideas?
session.PutFile(inputStream,remoteFile,options: new TransferOptions { FilePermissions = new FilePermissions { Octal = "666" }});
PutFiles
command with a local file works correctly.
Any ideas?