我使用SSH.NET库连接到sftp服务器并管理从服务器下载文件。在服务器中有很多文件类型我只需要下载CSV文件。如何检查文件扩展名GetExtension在SSH.NET中不起作用。帮助非常感谢。
foreach (var file in files)
{
if (!file.Name.StartsWith("."))
{
string remoteFileName = file.Name;
using (Stream fileStream = System.IO.File.OpenWrite(Path.Combine(sFilePath, file.Name)))
{
sftp.DownloadFile(file.FullName, fileStream);
}
}
}
答案 0 :(得分:1)
我有一个下载大量以“.rpt”结尾的文件的进程。在我的情况下,我关心最新的文件,但这个代码可以很好地工作。 ConnectionInfo c = new PasswordConnectionInfo(host,port,userName,password);
var sftp = new SftpClient(c);
List<SftpFile> allFiles = sftp.ListDirectory(directory).ToList().OrderByDescending(f => f.LastWriteTime).ToList();
var fileNames = allFiles.Where(f => f.Name.EndsWith("csv")).Select(f => f.Name).ToList();
答案 1 :(得分:0)
我找到了一个解决方案,我在这里发布它是为了帮助那些像我一样有问题的人。
string fname = file.Name;
string ext = fname.Substring(fname.Length - 4, 4);
if (ext == ".csv")
{
//code goes here
}
答案 2 :(得分:0)
怎么样......
ConnectionInfo c = new PasswordConnectionInfo(host,port,username,password);
var sftp = new SftpClient(c);
string remote= "/FromServer/"
sftp.Connection();
Console.WriteLine("Connected to {0}", host); // Just to help keep track of things
sftp.ChangeDirectory(remote);
Console.WriteLine("Changed directory to {0}", remote);// You should see your repository with this
var allFilenames = Directory.EnumerateFiles(remote).Select(p => Path.GetFileName(p));
var withext = allFilenames
.Where(fn => Path
.GetExtension(fn) == ".csv")
.Select(fn => Path.GetFileName(fn));
记得加上这些家伙......
using Renci.SshNet;
using Renci.SshNet.Sftp;
希望这有帮助!! :)