0 votes
by (620 points)

Applies to: Rebex SFTP

1 Answer

0 votes
by (150k points)
selected by
 
Best answer

public static FtpItemCollection GetCustomParsedList(this Sftp sftp)
{
    var list = new FtpItemCollection();
    foreach (string rawLine in sftp.GetRawList())
    {
        var item = FtpItem.Parse(rawLine);
        list.Add(item);
    }
    return list;
}
by (620 points)
Thank you for the detailed explanation.
We just needed a way to get around this server bug. Thank you for the answer!
Also, we reported this because FileZilla client is able to handle it.
...