C# 클래스 ICSharpCode.SharpZipLib.Core.ExtendedPathFilter

ExtendedPathFilter filters based on name, file size, and the last write time of the file.
Provides an example of how to customise filtering.
상속: PathFilter
파일 보기 프로젝트 열기: icsharpcode/SharpZipLib

공개 메소드들

메소드 설명
ExtendedPathFilter ( string filter, System.DateTime minDate, System.DateTime maxDate ) : System

Initialise a new instance of ExtendedPathFilter.

ExtendedPathFilter ( string filter, long minSize, long maxSize ) : System

Initialise a new instance of ExtendedPathFilter.

ExtendedPathFilter ( string filter, long minSize, long maxSize, System.DateTime minDate, System.DateTime maxDate ) : System

Initialise a new instance of ExtendedPathFilter.

IsMatch ( string name ) : bool

Test a filename to see if it matches the filter.

메소드 상세

ExtendedPathFilter() 공개 메소드

Initialise a new instance of ExtendedPathFilter.
public ExtendedPathFilter ( string filter, System.DateTime minDate, System.DateTime maxDate ) : System
filter string The filter to apply.
minDate System.DateTime The minimum to include.
maxDate System.DateTime The maximum to include.
리턴 System

ExtendedPathFilter() 공개 메소드

Initialise a new instance of ExtendedPathFilter.
public ExtendedPathFilter ( string filter, long minSize, long maxSize ) : System
filter string The filter to apply.
minSize long The minimum file size to include.
maxSize long The maximum file size to include.
리턴 System

ExtendedPathFilter() 공개 메소드

Initialise a new instance of ExtendedPathFilter.
public ExtendedPathFilter ( string filter, long minSize, long maxSize, System.DateTime minDate, System.DateTime maxDate ) : System
filter string The filter to apply.
minSize long The minimum file size to include.
maxSize long The maximum file size to include.
minDate System.DateTime The minimum to include.
maxDate System.DateTime The maximum to include.
리턴 System

IsMatch() 공개 메소드

Test a filename to see if it matches the filter.
The doesnt exist
public IsMatch ( string name ) : bool
name string The filename to test.
리턴 bool