Skip to content
New issue

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

After the file upload is completed, the local file is still occupied #1166

Open
jdwight123 opened this issue Sep 2, 2024 · 0 comments
Open

Comments

@jdwight123
Copy link

jdwight123 commented Sep 2, 2024

Use the following code to upload a file.After the file upload is completed,the local file is still occupied.
public async Task Upload(string filePath, string bucketName, string objectName)
{
var fileInfo = new FileInfo(filePath);
var putObjectAgs = new PutObjectArgs()
.WithBucket(bucketName)
.WithObject(objectName)
.WithFileName(filePath)
.WithObjectSize(fileInfo.Length);

        await _minioClient.PutObjectAsync(putObjectAgs).ConfigureAwait(false);
        return objectName;
    }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant