mirror of https://github.com/Xhofe/alist
parent
267120a8c8
commit
99f39410f2
|
@ -4,6 +4,7 @@ import (
|
||||||
"context"
|
"context"
|
||||||
"errors"
|
"errors"
|
||||||
"net/http"
|
"net/http"
|
||||||
|
"net/url"
|
||||||
"path"
|
"path"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
|
@ -198,7 +199,7 @@ func (d *S3) copyFile(ctx context.Context, src string, dst string) error {
|
||||||
dstKey := getKey(dst, false)
|
dstKey := getKey(dst, false)
|
||||||
input := &s3.CopyObjectInput{
|
input := &s3.CopyObjectInput{
|
||||||
Bucket: &d.Bucket,
|
Bucket: &d.Bucket,
|
||||||
CopySource: aws.String("/" + d.Bucket + "/" + srcKey),
|
CopySource: aws.String(url.PathEscape("/" + d.Bucket + "/" + srcKey)),
|
||||||
Key: &dstKey,
|
Key: &dstKey,
|
||||||
}
|
}
|
||||||
_, err := d.client.CopyObject(input)
|
_, err := d.client.CopyObject(input)
|
||||||
|
|
Loading…
Reference in New Issue