Click or drag to resize

DocumentFilePath Property

Document's file path.

Namespace: OpenDiscoverSDK.Interfaces.Platform
Assembly: OpenDiscoverSDK.Interfaces (in OpenDiscoverSDK.Interfaces.dll) Version: 2025.4.4.0 (2025.4.4)
Syntax
C#
[DataMemberAttribute]
public string FilePath { get; set; }

Property Value

String
Remarks

If the document is an input file for processing then this is the original file system path of the input file.

For child documents extracted from input documents, this property either points to an attachment archive file (IsAttachmentArchiveFilePath is set to true) or the document as an individual file. See properties IsAttachmentArchiveFilePath and AttachmentArchiveRecordOffset for more information.

For child documents only, this path is always stored as a relative path inside a document data archive (.dda) and returned as absolute path when using DocumentDataArchiveReader to read the records of the document data archive. The path is made absolute based on the parent directory path of the document data archive. The reason for this is to prevent the moving or renaming of the document data archive parent folder from breaking paths to the contained attachments and text under document data archive parent folder.

See Also