I am using dropbox php sdk to search the files from dropbox with solr. everythig is ok but issue is while i am indexing the files into that it is fetching all the files wit get_files() function .but i want only the modified and new files. Is there any way to do that please help me . I am using the following code to get the files
public function GetFiles($dropbox_path='', $recursive=true, $include_deleted=false)
{
if(is_object($dropbox_path) && !empty($dropbox_path->path)) $dropbox_path = $dropbox_path->path;
return $this->getFileTree($dropbox_path, $include_deleted, $recursive ? 1000 : 0);
}
please help , thanx in advance