我有这段代码可以将文件从谷歌存储下载到本地存储:
@Override
public void downloadFile(URI originFileLocation, URI destinationFileLocation) throws IOException {
StorageFileId gcsFileId = fileIdCreator.createFromUri(originFileLocation);
Get getRequest = gsClient.objects().get(gcsFileId.getBucket(), gcsFileId.getObjectId());
File localFile = new File(destinationFileLocation);
if (!localFile.exists())
{
localFile.createNewFile();
}
try (FileOutputStream fileOutputStream = new FileOutputStream(localFile))
{
getRequest.getMediaHttpDownloader().setDirectDownloadEnabled(false);
getRequest.executeMediaAndDownloadTo(fileOutputStream);
}
}
是否有API将directory and all its subDirectories
下载到本地存储空间?
答案 0 :(得分:3)
没有。 Google云端存储没有内置的目录概念。相反,只有对象名称包含“/”字符。用户界面和命令行实用程序假装存在这样的概念以方便起见,但API没有它们的真实概念。相反,您需要使用对象列表方法迭代您感兴趣的对象,并单独调用以下载每个对象。