Domanda

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 ?

È stato utile?

Soluzione

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.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a sharepoint.stackexchange
scroll top