using (var sshClient = new SshClient(this.sftpClient.ConnectionInfo))
{
sshClient.Connect();
var cmd = sshClient.CreateCommand("df -k | grep c:\folder\");
var response = cmd.Execute();
}
This code I want to execute in windows SFTP server. It will give detail of free space available on given directory.This is not work with window sftp server.