edgeport - v1.0.3
    Preparing search index...

    Interface FtpEntry

    A single directory entry returned by FtpSession.list.

    interface FtpEntry {
        isDirectory: boolean;
        name: string;
        raw: string;
        size?: number;
    }
    Index
    isDirectory: boolean

    Whether the entry is a directory.

    name: string

    The entry's file or directory name.

    raw: string

    The unparsed listing line, always preserved.

    size?: number

    The size in bytes when known (parsed from a Unix ls -l listing).