up vote 1 down vote favorite
share [g+] share [fb]

I'm trying to parse the result of the Ftp.ListDirectoryDetails command, I want just the FileName and the last modification date Not Directories.

The command returns this:

"01-21-09 06:16PM rattandom" "01-21-09 08:01PM 9900 myfile.txt"

Does somebody know the way to parse it? I was reading and if the server is Windows or Unix it will return something different. The result that I paste is for an FTP in a Windows 2003 Server

link|improve this question

feedback

3 Answers

FTP list results are non-standard so every FTP server could potentially return something different.

link|improve this answer
and what i have to do? there is an universal parse? – jmpena Sep 10 '09 at 23:24
You will have different parsing for every possible FTP server you might see. There is no consistent format to get the information you want. – Joe Sep 11 '09 at 0:33
+1 I didn't know that, but if that's true, it really sucks to implement an ftp client. – Groo Jul 13 '11 at 11:33
feedback

There is a suggested regular exception that works on both Windows and Unix based FTP servers. See this answer.

link|improve this answer
feedback

You may want to try Ftp.dll FTP component it pareses most UNIX and Windows LIST command responses:

using (Ftp client = new Ftp())
{
    client.Connect("ftp.example.org");
    client.Login("user", "password");

    List<FtpItem> items = client.GetList();

    foreach (FtpItem item in items)
    {
        Console.WriteLine("Name:        {0}", item.Name);
        Console.WriteLine("Size:        {0}", item.Size);
        Console.WriteLine("Modify date: {0}", item.ModifyDate);

        Console.WriteLine("Is folder:   {0}", item.IsFolder);
        Console.WriteLine("Is file:     {0}", item.IsFile);
        Console.WriteLine("Is symlink:  {0}", item.IsSymlink);

        Console.WriteLine();
    }

    client.Close();
}

Please note that this is a commercial product I created.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.