From 7240d6ebcf01524ddbed0d805986e06c8aab3c16 Mon Sep 17 00:00:00 2001 From: Ludovic Fauvet Date: Tue, 2 Feb 2016 16:37:26 +0100 Subject: [PATCH] RFC3659: add symlink support --- ftp.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ftp.go b/ftp.go index 175b967..a9d8be3 100644 --- a/ftp.go +++ b/ftp.go @@ -332,6 +332,8 @@ func parseRFC3659ListLine(line string) (*Entry, error) { e.Type = EntryTypeFolder case "file": e.Type = EntryTypeFile + case "OS.unix=symlink": + e.Type = EntryTypeLink } case "size": e.setSize(value)