Classes | |
class | ScanEventArgs |
Event arguments for scanning. More... | |
class | DirectoryEventArgs |
Event arguments for directories. More... | |
class | ScanFailureEventArgs |
Arguments passed when scan failures are detected. More... | |
class | FileSystemScanner |
FileSystemScanner provides facilities scanning of files and directories. More... | |
interface | INameTransform |
INameTransform defines how file system names are transformed for use with archives. More... | |
class | NameFilter |
NameFilter is a string matching class which allows for both positive and negative matching. A filter is a sequence of independant Regex regular expressions separated by semi-colons ';' Each expression can be prefixed by a plus '+' sign or a minus '-' sign to denote the expression is intended to include or exclude names. If neither a plus or minus sign is found include is the default A given name is tested for inclusion before checking exclusions. Only names matching an include spec and not matching an exclude spec are deemed to match the filter. An empty filter matches any name. More... | |
interface | IScanFilter |
Scanning filters support these operations. More... | |
class | PathFilter |
PathFilter filters directories and files by full path name. More... | |
class | NameAndSizeFilter |
NameAnsSizeFilter filters based on name and file size. More... | |
Functions | |
delegate void | ProcessDirectoryDelegate (object Sender, DirectoryEventArgs e) |
Delegate invokked when a directory is processed. | |
delegate void | ProcessFileDelegate (object sender, ScanEventArgs e) |
Delegate invoked when a file is processed. | |
delegate void | DirectoryFailureDelegate (object sender, ScanFailureEventArgs e) |
Delegate invoked when a directory failure is detected. | |
delegate void | FileFailureDelegate (object sender, ScanFailureEventArgs e) |
Delegate invoked when a file failure is detected. |
|
Delegate invoked when a directory failure is detected.
|
|
Delegate invoked when a file failure is detected.
|
|
Delegate invokked when a directory is processed.
Referenced by ICSharpCode::SharpZipLib::Zip::FastZip::CreateZip(). |
|
Delegate invoked when a file is processed.
Referenced by ICSharpCode::SharpZipLib::Zip::FastZip::CreateZip(). |