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 ?

有帮助吗?

解决方案

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.

许可以下: CC-BY-SA归因
scroll top