KANNIBALAMK

Results 2 comments of KANNIBALAMK

I think the only way to get the deleted file is using RecycleBin in Sharepoint.. But even I don't see proof of working code

RecycleBinItemCollection collRBI = cxt.Site.RecycleBin; cxt.Load(collRBI); cxt.ExecuteQuery(); int deletedfileCount = collRBI.Count; for (int i = 0; i < deletedfileCount; i++) { RecycleBinItem rbiItem = collRBI[i]; recycleBinState =Convert.ToString(rbiItem.ItemState); if (recycleBinState == "FirstStageRecycleBin")...