<PackageReference Include="SSH.NET" Version="2024.2.0" />

Renci.SshNet.Sftp.SftpFileSystemInformation

Contains File system information exposed by statvfs@openssh.com request.
namespace Renci.SshNet.Sftp { public class SftpFileSystemInformation { public ulong FileSystemBlockSize { get; } public ulong BlockSize { get; } public ulong TotalBlocks { get; } public ulong FreeBlocks { get; } public ulong AvailableBlocks { get; } public ulong TotalNodes { get; } public ulong FreeNodes { get; } public ulong AvailableNodes { get; } public ulong Sid { get; } public bool IsReadOnly { get; } public bool SupportsSetUid { get; } public ulong MaxNameLenght { get; } } }