gpt4 book ai didi

azure - 断电后使用 Azure 恢复上传

转载 作者:行者123 更新时间:2023-12-02 06:50:29 25 4
gpt4 key购买 nike

如何从上次断开连接后恢复在 Azure 中的上传。在网络故障中我可以继续,但是当我的系统重新启动时断电后我必须做什么。我如何保存软件的当前状态(正在将文件上传到 Azure)。因此,如果我保存我的状态,我可以从上一点恢复它。我正在使用此代码进行上传。该代码来自互联网。

private void UploadBigFile(){
int count = 0, bufferSize = 40 * 1024, blockCount = 0;
string filePath = @"D:\Dua.zip";
List<string> blockIds = new List<string>();
CloudStorageAccount storageAccount = CloudStorageAccount.Parse(CloudConfigurationManager.GetSetting("StorageConnectionString"));
CloudBlobClient blobClient = storageAccount.CreateCloudBlobClient();
CloudBlobContainer container = blobClient.GetContainerReference("mytestcontainer");
container.CreateIfNotExists();
byte[] bufferBytes = new byte[bufferSize];
string fileName = Path.GetFileName(filePath);
CloudBlockBlob blob = container.GetBlockBlobReference(fileName);

using (FileStream fileStream = File.OpenRead(filePath)){
blockCount = (int)(fileStream.Length / bufferSize) + 1;
Int64 currentBlockSize = 0;
int currentCount = blockIds.Count();
fileStream.Seek(bufferSize * currentCount, SeekOrigin.Begin);
for (int i = blockIds.Count; i < blockCount; i++){
currentBlockSize = bufferSize;
if (i == blockCount - 1){
currentBlockSize = fileStream.Length - bufferSize * i;
bufferBytes = new byte[currentBlockSize];
}
if (currentBlockSize == 0) break;
fileStream.Read(bufferBytes, 0, Convert.ToInt32(currentBlockSize));

using (MemoryStream memoryStream = new MemoryStream(bufferBytes)){
try{
string blockId = Convert.ToBase64String(Encoding.UTF8.GetBytes(Guid.NewGuid().ToString()));
blob.PutBlock(blockId, memoryStream, null);
blockIds.Add(blockId);
count++;
label1.Text = Convert.ToString(count);
label1.Refresh();
}
catch (Exception){}
}
}
}
blob.PutBlockList(blockIds);
}

最佳答案

如果您正在跟踪 block ,则可以保存位置,然后重新启动。这是一篇关于 uploading large files 的博客文章;它的结尾准确地告诉了如何做你想做的事情。

关于azure - 断电后使用 Azure 恢复上传,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32860726/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com