我使用 Tamir SharpSSH 一切正常,但我需要使用 c# 代码运行命令,我放置文件服务器,但我需要运行命令,有人知道吗?
SshTransferProtocolBase sshCp;
const string sftp_host = "xxx";
const string sftp_user = "xxx";
const string sftp_pass = "xxx";
const int sftp_port = 22;
var sftp = new Sftp(sftp_host, sftp_user, sftp_pass);
sftp.Connect(sftp_port);
sftp.Put(@"D:\\" + Teslim + ".txt", "../");
sftp.Close();
此代码工作我需要将命令运行到 root 中????