You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 3, 2026. It is now read-only.
@@ -2440,7 +2446,9 @@ class Bucket extends ServiceObject {
2440
2446
* });
2441
2447
*
2442
2448
* ```
2443
-
* @example <caption><h6>Simulating a File System</h6><p>With `autoPaginate: false`, it's possible to iterate over files which incorporate a common structure using a delimiter.</p><p>Consider the following remote objects:</p><ol><li>"a"</li><li>"a/b/c/d"</li><li>"b/d/e"</li></ol><p>Using a delimiter of `/` will return a single file, "a".</p><p>`apiResponse.prefixes` will return the "sub-directories" that were found:</p><ol><li>"a/"</li><li>"b/"</li></ol></caption>
2449
+
* @example
2450
+
* <h6>Simulating a File System</h6><p>With `autoPaginate: false`, it's possible to iterate over files which incorporate a common structure using a delimiter.</p><p>Consider the following remote objects:</p><ol><li>"a"</li><li>"a/b/c/d"</li><li>"b/d/e"</li></ol><p>Using a delimiter of `/` will return a single file, "a".</p><p>`apiResponse.prefixes` will return the "sub-directories" that were found:</p><ol><li>"a/"</li><li>"b/"</li></ol>
2451
+
* ```
2444
2452
* bucket.getFiles({
2445
2453
* autoPaginate: false,
2446
2454
* delimiter: '/'
@@ -2454,8 +2462,11 @@ class Bucket extends ServiceObject {
2454
2462
* // 'b/'
2455
2463
* // ]
2456
2464
* });
2465
+
* ```
2457
2466
*
2458
-
* @example <caption>Using prefixes, it's now possible to simulate a file system with follow-up requests.</caption>
2467
+
* @example
2468
+
* Using prefixes, it's now possible to simulate a file system with follow-up requests.
2469
+
* ```
2459
2470
* bucket.getFiles({
2460
2471
* autoPaginate: false,
2461
2472
* delimiter: '/',
@@ -2470,6 +2481,7 @@ class Bucket extends ServiceObject {
0 commit comments