Skip to content

通过 listV2 方法列举文件

js
import { getCurrentClient } from "#imports";

async function list(prefix, pageSize, continuationToken) {
  const client = getCurrentClient();

  // 不带任何参数, 默认最多返回100个文件。
  const result = await client.listV2({
    "max-keys": pageSize, // 指定个数
    prefix, // 指定前缀
    "continuation-token": continuationToken, // 分页信息
  });
  console.log(result);
}
2025( )
今日 8.33%
本周 42.86%
本月 48.39%
本年 4.11%
Powered by Snowinlu | Copyright © 2024- | MIT License