Renci.SshNet.Sftp.SftpFileSytemInformation
Contains File system information exposed by statvfs@openssh.com request.
namespace Renci.SshNet.Sftp
{
public class SftpFileSytemInformation
{
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; }
}
}