IP*Works! 2016 .NET Edition
IP*Works! 2016 .NET Edition
Questions / Feedback?

DirList Event

Fired when a directory entry is received.

Syntax

[VB.NET]
Public Event OnDirList As OnDirListHandler
[C#]
public event OnDirListHandler OnDirList;

public delegate void OnDirListHandler(object sender, FtpDirListEventArgs e);

class FtpDirListEventArgs : EventArgs {
  string DirEntry {get;}
  string FileName {get;}
  bool IsDir {get;}
  long FileSize {get;}
  string FileTime {get;}
}

Remarks

The DirList events are fired when a directory listing is received as a response to a ListDirectory or ListDirectoryLong call.

The StartTransfer and EndTransfer events mark the beginning and end of the event stream.

The DirEntry parameter contains the filename when ListDirectory is called, and extended file information when ListDirectoryLong is called.

The component tries to fill out the FileName, IsDir, FileSize, and FileTime parameters when calling the ListDirectoryLong method. Except for FileName, these parameters are empty when a short 'List Directory' is performed.

In Unix systems the date is given in two types of formats: If the date is in the last 12 months the exact time is specified and the year is omitted. Otherwise only the date and the year but not hours or minutes are given.

 
 
Copyright (c) 2020 /n software inc. - All rights reserved.
IP*Works! 2016 .NET Edition - Version 16.0 [Build 7353]