Google云端硬盘进度上传/下载状态

时间:2015-06-11 14:25:15

标签: vb.net file-upload download google-drive-api

在论坛中搜索后,我需要问一个小例子如何在vb.net或C#中看到首选的上传/下载进度状态。

我看过这篇文章(https://developers.google.com/drive/v2/reference/files/insert),用户'DaImTo'回答,但我一无所获。

我试过但我还没有'XMLHttpRequest。我只有HttpWebRequest,它没有根据您附加的链接建议的'open'事件。

但是不能使用request.upload中的updload进度?

Dim uploadProgress As Google.Apis.Upload.IUploadProgress = request.Upload()

你在.net中有链接吗?

由于

1 个答案:

答案 0 :(得分:1)

实现上传状态的唯一方法是使用分块上传并在每个块之后更新状态。

对于下载状态,您需要使用XMLHttpRequest并使用https://developer.mozilla.org/en/docs/Web/API/XMLHttpRequest/Using_XMLHttpRequest#Monitoring_progress

中描述的技术