Class CompoundFileExtractor
Command-line tool for extracting sub-files out of a compound file.
LUCENENET specific: In the Java implementation, this class' Main method was intended to be called from the command line. However, in .NET a method within a DLL can't be directly called from the command line so we provide a .NET tool, lucene-cli, with two commands that map to that method: index extract-cfs and index list-cfsInherited Members
Namespace: Lucene.Net.Index
Assembly: Lucene.Net.Misc.dll
Syntax
public static class CompoundFileExtractor
Methods
Main(string[])
Prints the filename and size of each file within a given compound file. Add the -extract flag to extract files to the current working directory. In order to make the extracted version of the index work, you have to copy the segments file from the compound index into the directory where the extracted files are stored.
LUCENENET specific: In the Java implementation, this Main method was intended to be called from the command line. However, in .NET a method within a DLL can't be directly called from the command line so we provide a .NET tool, lucene-cli, with two commands that map to this method: index extract-cfs and index list-cfsDeclaration
public static void Main(string[] args)
Parameters
Type | Name | Description |
---|---|---|
string[] | args | The command line arguments |