<PackageReference Include="SSH.NET" Version="2016.1.0-beta1" />

StatVfsRequest

using Renci.SshNet.Sftp.Responses; using System; using System.Text; namespace Renci.SshNet.Sftp.Requests { internal class StatVfsRequest : SftpExtendedRequest { private byte[] _path; public string Path { get { return Encoding.GetString(_path, 0, _path.Length); } private set { _path = Encoding.GetBytes(value); } } public Encoding Encoding { get; set; } protected override int BufferCapacity => base.BufferCapacity + 4 + _path.Length; public StatVfsRequest(uint protocolVersion, uint requestId, string path, Encoding encoding, Action<SftpExtendedReplyResponse> extendedAction, Action<SftpStatusResponse> statusAction) : base(protocolVersion, requestId, statusAction, "statvfs@openssh.com") { Encoding = encoding; Path = path; SetAction(extendedAction); } protected override void SaveData() { base.SaveData(); WriteBinaryString(_path); } } }