Click or drag to resize

ContentExtractorFactoryGetAllSplitArchiveFilenames 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.

Namespace: OpenDiscoverSDK
Assembly: OpenDiscoverSDK (in OpenDiscoverSDK.dll) Version: 2025.4.4.0 (2025.4.4)
Syntax
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

String
A 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.
See Also