Private
Public Access
1
0

修复: 网站预览资源路径+七牛目录层级

This commit is contained in:
2026-05-13 21:16:33 +08:00
parent 2a363fd729
commit 316e517989
6 changed files with 63 additions and 93 deletions

View File

@@ -480,6 +480,9 @@ func (c *Client) ListFiles(ctx context.Context, options *oss.ListOptions) (*oss.
if options.Marker != "" {
path += "&marker=" + options.Marker
}
if options.Delimiter != "" {
path += "&delimiter=" + options.Delimiter
}
// 使用 GET 方法和 RSF API
resp, err := c.doRSFRequest("GET", path)