List files API? #61
-
This doc mentions a list tables API: https://learn.microsoft.com/en-us/rest/api/fabric/lakehouse/tables/list-tables?tabs=HTTP Wondering if there is a similar API to list all files? Looking for an example that displays (for example) all csv files in the selected Lakehouse. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Lakehouse public APIs do not include this feature. However, you can use Azure Storage APIs, which also work on OneLake items, to retrieve this information. For more details, see: You may need to filter the results to retrieve only CSV files. We also have an example of using this API in our sample code: |
Beta Was this translation helpful? Give feedback.
Lakehouse public APIs do not include this feature. However, you can use Azure Storage APIs, which also work on OneLake items, to retrieve this information.
For more details, see:
Azure Storage APIs - List Paths
You may need to filter the results to retrieve only CSV files. We also have an example of using this API in our sample code:
Sample Code