MCD - Level 1 Exam QuestionsBrowse all questions from this exam

MCD - Level 1 Exam - Question 8


What is the object type returned by the File List operation?

Show Answer
Correct Answer: C

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.

Discussion

4 comments
Sign in to comment
aaggabao
Aug 28, 2021

https://docs.mulesoft.com/file-connector/1.3/file-list

sirious09Option: D
Aug 16, 2022

D - I agree with D

d_ngnrOption: D
Sep 4, 2023

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" } ]

farhansiddiqui8662Option: B
Feb 26, 2024

I think the answer is " B. Array of String file names"