I am using cleartool find command to find the list of files delivered to integration stream since previous day. Following is the command [ I am storing the result in powershell variable]
$ListOfFilesChanges = cleartool find "$folderPath" -version "{brtype($streamName) && created_since($fromDate)}" -print
But it is taking much time as we are verifying many folder. If we are able to find list of activities delivered since yesterday and find the list of files delivered as part of delivery it may be faster.
I need to find the list of deliveries done previous day. Then need to check what are all the files delivered as part of it.
Is there any cleartool command available to do this?