Azure 文件存储在单个请求中递归获取所有文件

Azure File Storage Fetch All Files Recursively in a Single Request

Azure 文件服务的 REST API 文档表明它可以采用 ListDirectoriesAndfiles() 的前缀,但这似乎只对 return 直接后代有效。是否可以像使用 Blob 存储一样在单个请求中获取所有后代?

Is it possible to get all descendants in a single request like it is with Blob storage?

没有。该操作将仅列出 1 级后代。本质上 ListDirectoriesAndfiles()List Directories and Files REST API 操作的包装器。来自 REST API 文档:

The List Directories and Files operation returns a list of files or directories under the specified share or directory. It lists the contents only for a single level of the directory hierarchy.