I have a query in SP where I get the list of files added/ modified after a given timestamp. This works for me:

_api/Web/GetFolderByServerRelativePath(decodedurl='myurl/myfolder')/Files?$filter=TimeLastModified gt datetime'2018-5-20T09:59:32'

Is there a way that I can get the list of files at a given folder, between two timestamps?
Like all files added/updated where TimeLastModified gt startTime and TImeLastModified less than end time

Thanks in advance. Seems documentation is quite limited.

有帮助吗?

解决方案

You can use multiple filter in the current api Url to achieve this. Try like this,

_api/Web/GetFolderByServerRelativePath(decodedurl='myurl/myfolder')/Files?$filter=TimeLastModified gt datetime'2018-5-20T09:59:32' and TimeLastModified lt datetime'2018-5-20T10:59:32'
许可以下: CC-BY-SA归因
scroll top