I am using
client.folder(folder_id=fldID).get_items(limit=5000)to retrieve all folders/files inside parent folder and look for foldername and create it if does not exist. But as per box api reference, get_items() methods returns only 1000 items.
1. offset=2, limit=1000 : though i set offset =2 , it does not return 2nd page data.
2. folder object does not return file/folder length/count and other information.
Please let me know how can i search a folder and create if does not exist. currently i am creating it and if exists its throwing exception , capturing the {FolderID} from it(which is a wrong way but work around for me now).
Any help would be appreciated.