We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
// PutFile uploads a file to the specified bucket. func (obsClient ObsClient) PutFile(input *PutFileInput, extensions ...extensionOptions) (output *PutObjectOutput, err error) { if input == nil { return nil, errors.New("PutFileInput is nil") } var body io.Reader sourceFile := strings.TrimSpace(input.SourceFile)
这里sourceFile := strings.TrimSpace(input.SourceFile)对源文件名称进行了去除空格操作,导致文件名包含空格的文件无法正常上传。
sourceFile := strings.TrimSpace(input.SourceFile)
The text was updated successfully, but these errors were encountered:
不好意思,该问题会在下个版本修复,感谢您的反馈。
Sorry, something went wrong.
No branches or pull requests
这里
sourceFile := strings.TrimSpace(input.SourceFile)
对源文件名称进行了去除空格操作,导致文件名包含空格的文件无法正常上传。The text was updated successfully, but these errors were encountered: