Pergunta

I can't figure out how to get the item ID of a document library from the crawled or managed properties. So I decided to get it using the item Path which return the document Url allowing to download it.

Given this path I would like to know how to get this particular document item ID. Any idea ?

Foi útil?

Solução

var file = web.GetFile("FULL_FILE_URL");
var itemId = file.Item.Id;

web is the SPWeb object of the website where your file is kept.

Licenciado em: CC-BY-SA com atribuição
Não afiliado a sharepoint.stackexchange
scroll top