15

我正在使用System.Net.FtpWebRequest该类,我的代码如下:

FtpWebRequest request = (FtpWebRequest)WebRequest.Create("ftp://example.com/folder");
request.Method = WebRequestMethods.Ftp.ListDirectory;

request.Credentials = new NetworkCredential("username", "password");

FtpWebResponse response = (FtpWebResponse)request.GetResponse();

Stream responseStream = response.GetResponseStream();
StreamReader reader = new StreamReader(responseStream);

string names = reader.ReadToEnd();

reader.Close();
response.Close();

这是基于 MSDN 上提供的示例,但我找不到更详细的内容。

我将所有文件名存储在文件夹中,names但我现在如何遍历每个文件名并检索它们的日期?我想检索日期,以便找到最新的文件。谢谢。

4

4 回答 4

27

这似乎工作得很好 http://msdn.microsoft.com/en-us/library/system.net.ftpwebresponse.lastmodified(v=VS.90).aspx

FtpWebRequest request = (FtpWebRequest)WebRequest.Create (serverUri);
request.Method = WebRequestMethods.Ftp.GetDateTimestamp;
FtpWebResponse response = (FtpWebResponse)request.GetResponse ();
Console.WriteLine ("{0} {1}",serverUri,response.LastModified);
于 2011-09-27T18:58:30.033 回答
15

不幸的是,没有真正可靠和有效的方法来使用 .NET 框架提供的功能来检索时间戳,因为它不支持 FTPMLSD命令。该MLSD命令以标准化的机器可读格式提供远程目录列表。命令和格式由RFC 3659标准化。

您可以使用的替代方案,由 .NET 框架支持:

  • ListDirectoryDetails方法(FTPLIST命令)检索目录中所有文件的详细信息,然后处理 FTP 服务器特定格式的详细信息(*nix 格式类似于ls*nix 命令是最常见的,缺点是格式可能会改变随着时间的推移,新文件使用“May 8 17:48”格式,旧文件使用“Oct 18 2009”格式)。

    DOS/Windows 格式:C# 类解析 WebRequestMethods.Ftp.ListDirectoryDe​​tails FTP 响应
    *nix 格式:解析 FtpWebRequest ListDirectoryDe​​tails 行

  • GetDateTimestamp方法(FTPMDTM命令)单独检索每个文件的时间戳。一个优点是响应由RFC 3659标准化为YYYYMMDDHHMMSS[.sss]. 缺点是您必须为每个文件发送单独的请求,这可能效率很低。

    const string uri = "ftp://example.com/remote/path/file.txt";
    FtpWebRequest request = (FtpWebRequest)WebRequest.Create(uri);
    request.Method = WebRequestMethods.Ftp.GetDateTimestamp;
    FtpWebResponse response = (FtpWebResponse)request.GetResponse();
    Console.WriteLine("{0} {1}", uri, response.LastModified);
    

或者,您可以使用支持现代MLSD命令的第 3 方 FTP 客户端实现。

例如WinSCP .NET 程序集支持它。

甚至还有一个针对您的特定任务的示例:下载最新文件
该示例适用于 PowerShell 和 SFTP,但可以轻松转换为 C# 和 FTP:

// Setup session options
SessionOptions sessionOptions = new SessionOptions
{
    Protocol = Protocol.Ftp,
    HostName = "example.com",
    UserName = "username",
    Password = "password",
};

using (Session session = new Session())
{
    // Connect
    session.Open(sessionOptions);

    // Get list of files in the directory
    string remotePath = "/remote/path/";
    RemoteDirectoryInfo directoryInfo = session.ListDirectory(remotePath);

    // Select the most recent file
    RemoteFileInfo latest =
        directoryInfo.Files
            .OrderByDescending(file => file.LastWriteTime)
            .First();

    // Download the selected file
    string localPath = @"C:\local\path\";
    string sourcePath = RemotePath.EscapeFileMask(remotePath + latest.Name);
    session.GetFiles(sourcePath, localPath).Check();
}

(我是WinSCP的作者)

于 2015-05-18T14:34:20.237 回答
14

WebRequestMethods.Ftp.ListDirectory返回 FTP 目录中所有文件的“短列表”。这种类型的列表只会提供文件名 - 而不是文件的其他详细信息(如权限或上次修改日期)。

改为使用WebRequestMethods.Ftp.ListDirectoryDetails。此方法将返回 FTP 服务器上的一长串文件。将此列表检索到names变量中后,您可以names根据行尾字符将变量拆分为数组。这将导致每个数组元素都是一个文件(或目录)名称列表,其中包括权限、上次修改日期所有者等...

此时,您可以遍历这个数组,检查每个文件的最后修改日期,并决定是否下载该文件。

我希望这有帮助!!

于 2010-12-15T21:37:14.597 回答
-2

首先,您需要使用文件名分隔符拆分名称String.Split。然后遍历所有字符串并导航目录

于 2010-12-15T20:59:52.787 回答