Frage

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 ?

War es hilfreich?

Lösung

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.

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit sharepoint.stackexchange
scroll top