문제

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 ~와 함께 속성
제휴하지 않습니다 sharepoint.stackexchange
scroll top