I've got a workflow which scan some folder and send for each folder all the entry attached in a zip file. This is working great except if the size of the zip (>10 mo) is to big for the SMTP server.
Is there a way with the SDK to compute the size of a entry in order to know if I can send my folder or if I have to split it.
Each entry contain Tiff file not a PDF so I can't use the electronic file size.
On the other hand in there a way to make a Advanced to find all the folder that are bigger than 10 Mo.
I found a class FolderStatistics which had the following property public long AttachmentFileSize { get; } but how can I call it I don't find any Entry.GetFolderStatistics ...
Any ideas are welcome.
Thanks.