我只是很好奇,是否可以在c#中进行直接网络传输,而无需本地缓存。
e.g。 我有代表GoogleDrive文件的响应流,并请求流将文件上传到另一个GoogleDrive帐户。
在那个妈妈,我可以将文件下载到本地电脑,然后将其上传到谷歌硬盘。但是可以直接从一个谷歌驱动器上传到另一个谷歌驱动器,或者至少在完全下载完成之前开始上传。
谢谢
答案 0 :(得分:0)
是的,您可以使用Google Drive api将文件下载到流中并将其保存在内存中,以便在登录后将其上传到其他Google云端硬盘帐户。
您可以在第一个帐户上获取令牌并下载一个文件,将其保存在一个流中。
您在其他google云端硬盘帐户上进行身份验证,然后使用该流上传文件。
PS:当您在第二个驱动器帐户上插入文件时,而不是获取 从磁盘读取文件的byte []数组,从内存中的流中获取字节数组。
文件下载示例:
public static System.IO.Stream DownloadFile(
IAuthenticator authenticator, File file) {
if (!String.IsNullOrEmpty(file.DownloadUrl)) {
try {
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(
new Uri(file.DownloadUrl));
authenticator.ApplyAuthenticationToRequest(request);
HttpWebResponse response = (HttpWebResponse) request.GetResponse();
if (response.StatusCode == HttpStatusCode.OK) {
return response.GetResponseStream();
} else {
Console.WriteLine(
"An error occurred: " + response.StatusDescription);
return null;
}
} catch (Exception e) {
Console.WriteLine("An error occurred: " + e.Message);
return null;
}
} else {
// The file doesn't have any content stored on Drive.
return null;
}
文件插入示例:
private static File insertFile(DriveService service, String title, String description, String parentId, String mimeType, String filename) {
// File's metadata.
File body = new File();
body.Title = title;
body.Description = description;
body.MimeType = mimeType;
// Set the parent folder.
if (!String.IsNullOrEmpty(parentId)) {
body.Parents = new List<ParentReference>()
{new ParentReference() {Id = parentId}};
}
// File's content.
byte[] byteArray = System.IO.File.ReadAllBytes(filename);
MemoryStream stream = new MemoryStream(byteArray);
try {
FilesResource.InsertMediaUpload request = service.Files.Insert(body, stream, mimeType);
request.Upload();
File file = request.ResponseBody;
// Uncomment the following line to print the File ID.
// Console.WriteLine("File ID: " + file.Id);
return file;
} catch (Exception e) {
Console.WriteLine("An error occurred: " + e.Message);
return null;
}
}