I want to get the recently/ currently uploaded/uploading document from document library of sharepoint site in C#? how can i get it . please help . i want to make checked out the recently uploading document in my work flow with sharepoint. how to achieve this?
0
votes
2 Answers
0
votes
You can create a CAML Query that queries the Document Library for recent items based on the creation date.
Iterate the resulting items collection and check them out using the CheckOut() method.