tags:

views:

35

answers:

1

Is it possible to "ask" SharePoint, what sites/folders a user has access to?

In other words, how to do an API call which returns a list of resources that a registered user is allowed to access.

+2  A: 

You could loop sites -> webs -> lists -> listitems and use DoesUserHavePermissions on object to see if user can view/create/delete stuff.

Janis Veinbergs