Content Extractor FactoryGet All Split Archive Filenames Method
Given the file path to a main split archive or media image file part, returns all split segment file names contained in the directory of main part in proper order.
Definition
Namespace: OpenDiscoverSDK
Assembly: OpenDiscoverSDK (in OpenDiscoverSDK.dll) Version: 2026.2.6.0 (2026.02.06)
A string array containing the split archive or media image parts in proper order.
Assembly: OpenDiscoverSDK (in OpenDiscoverSDK.dll) Version: 2026.2.6.0 (2026.02.06)
C#
public static string[] GetAllSplitArchiveFilenames(
string mainSplitArchivePath,
Id mainSplitFileId
)Parameters
- mainSplitArchivePath String
- The full path (including file name) to the main split archive or media image file part. See the 'mainSplitFileId' argument summary for the file format identification types of main split parts.
- mainSplitFileId Id
- Main split archive or media image parts have one of the following file format Ids: ArchiveZipSplit, Archive7ZipSplit, ArchiveRar4Split, ArchiveRar5Split, MediaImageWIMSplit.
Return Value
StringA string array containing the split archive or media image parts in proper order.
Remarks
The IArchiveExtractor interface has the method GetSplitSegmentStreamsInOrder(String, Stream, String) for
helping all the streams and parts to extract from supported split archives and media images. This method is provided for gathering the split parts outside of
IArchiveExtractor use.