You are viewing limited content. For full access, please sign in.

Question

Question

Electronic volume full path

SDK
asked on February 4, 2015

Is it possible to obtain the edoc information such as the actual path on the drive through the SDK? If so how would I declare this method.

0 0

Answer

SELECTED ANSWER
replied on February 4, 2015

In RepositoryAccess, the edoc file path is exposed through the DocumentStatistics class:

 

DocumentInfo doc = Document.GetDocumentInfo(entryId, session);
DocumentStatistics docStats = doc.GetStatistics();
string edocPath = docStats.ElecDocumentPath;

 

0 0
replied on February 5, 2015

Awesome thanks!

0 0

Replies

You are not allowed to reply in this post.
You are not allowed to follow up in this post.

Sign in to reply to this post.