We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am using this def to list the files in a sharepoint folder. ---------------- my def ---------------------------------
def list_files_sharepoint(folder_url): folder = ctx.web.get_folder_by_server_relative_url(folder_url) ctx.load(folder) ctx.execute_query() files = folder.files ctx.load(files) ctx.execute_query() sharepoint_files = [file.properties["Name"] for file in files] return sharepoint_files
However, my folder has 7,000 items.
I get this error when I run my function:
'-2147024860, Microsoft.SharePoint.SPQueryThrottledException'
Can someone help me read data from a folder with more than 5,000 items?
I don't have any sharepoint lists, just a folder with +5,000 items.
The text was updated successfully, but these errors were encountered:
Seems to be a duplicate of #882
Sorry, something went wrong.
No branches or pull requests
I am using this def to list the files in a sharepoint folder.
---------------- my def ---------------------------------
However, my folder has 7,000 items.
I get this error when I run my function:
'-2147024860, Microsoft.SharePoint.SPQueryThrottledException'
Can someone help me read data from a folder with more than 5,000 items?
I don't have any sharepoint lists, just a folder with +5,000 items.
The text was updated successfully, but these errors were encountered: