Hello,
I would like to know if there's any way of check if the Metadata of a certain entry is of type DeletedMetadata and FileMetada but not FolderMetadata.
Like the following:
if (entry instanceof DeletedMetadata && entry instanceof FileMetadata) {
log.info("Deleted file: "+entry.getPathLower());
}
That's why I only store files on my application and I don't need to deal with the folders deleted.