pull/342/head
何冠峰 2024-08-12 20:18:03 +08:00
parent 79ac231df2
commit e5f5241879
1 changed files with 10 additions and 10 deletions

View File

@ -250,17 +250,17 @@ namespace YooAsset
if (File.Exists(_tempFilePath)) if (File.Exists(_tempFilePath))
{ {
FileInfo fileInfo = new FileInfo(_tempFilePath); FileInfo fileInfo = new FileInfo(_tempFilePath);
fileBeginLength = fileInfo.Length; if (fileInfo.Length >= Bundle.FileSize)
_fileOriginLength = fileBeginLength; {
DownloadedBytes = _fileOriginLength; // 删除临时文件
}
// 检测下载起始位置
if (fileBeginLength >= Bundle.FileSize)
{
// 删除临时文件
if (File.Exists(_tempFilePath))
File.Delete(_tempFilePath); File.Delete(_tempFilePath);
}
else
{
fileBeginLength = fileInfo.Length;
_fileOriginLength = fileBeginLength;
DownloadedBytes = _fileOriginLength;
}
} }
// 创建下载器 // 创建下载器