What is the object type returned by the File List operation?
What is the object type returned by the File List operation?
The object type returned by the File List operation is an object of Mule event objects. This is because the File List operation typically returns structured data that includes properties such as file name, size, timestamp, and type, which are encapsulated within Mule event objects.
https://docs.mulesoft.com/file-connector/1.3/file-list
I think the answer is " B. Array of String file names"
Sample response for the file-list call that contains Mule event objects: [ { "name": "file1.txt", "size": 1024, "timestamp": "2023-06-24T12:30:00Z", "type": "file" }, { "name": "file2.txt", "size": 2048, "timestamp": "2023-06-24T13:45:00Z", "type": "file" }, { "name": "subdirectory", "size": 0, "timestamp": "2023-06-24T10:15:00Z", "type": "directory" } ]
D - I agree with D