Hello,
I have found that edtftpnet 1.2.2 does not work with files which contain whitespaces. The FTPFileParser.Split contains an incorrect assumption that all fields should be whitespace delimitted - that's true but not for the last field:
if (!Char.IsWhiteSpace(ch))
field.Append(ch);
else {
if (field.Length > 0) {
fields.Add(field.ToString());
field.Length = 0;
}
}
Any suggestions?
Thank you