Click or drag to resize

LoadFileSettingsUseFilenameAsDocGuidField Property

If true, replaces the Open Discover created DocGuid field with the file's input filename with no extension (default is false). This field SHOULD always be set to false unless the user is wanting to process extracted text/native files that have been exported with Document ID's as their file names. See remarks.

Namespace: OpenDiscoverSDK.Interfaces.Platform.LoadFile
Assembly: OpenDiscoverSDK.Interfaces (in OpenDiscoverSDK.Interfaces.dll) Version: 2025.4.4.0 (2025.4.4)
Syntax
C#
[JsonPropertyNameAttribute("UseFilenameAsDocGuidField")]
public bool UseFilenameAsDocGuidField { get; set; }

Property Value

Boolean
Remarks

The DocGuid field can than be mapped to the Document ID field during load file creation to perserve already existing Document ID's in the review database. This feature is useful for overlaying new data (e.g., entity RDO data) into an existing review system.

This feature is not useful if extracting embedded documents/attachments out of the exported review native files because there will be not filenames for the children that contain the review system's Document Control IDs (just Open Discover generated GUIDs). The user should run with DocumentTaskSettings.EmbeddedObjectExtraction property set to None.

For Relativity entity RDO creation (see LoadFileCreator.WriteRelativityCompatibleEntityRDO), if UseFilenameAsDocGuidField is true, then the "Document ID" field is the input file name without extension; otherwise it is the DocControlNumber.

See Also