-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Closed
Description
Is your feature request related to a problem? Please describe.
If I want to get info about all files in ADLS Gen2 I have to use continuation token, called here as Next Marker (next_marker).
This marker is not returning with result, but putted into logger as a warning, thus I can't build my logic to get all files in iterative way.
| if pages.continuation_token: |
Describe the solution you'd like
I want to have ability to get nex_marker with response, not as warning message in stdout
Describe alternatives you've considered
Alternative is continue using az storage blob list, but cli claim it will be deprecated.
Additional context
https://stackoverflow.com/questions/66125910/how-to-grab-next-marker-next-marker-in-azure-cli-command-az-storage-fs-file-li/66131754#66131754
Reactions are currently unavailable