我試圖只下載根目錄中的文件。目前我沒有指定任何文件夾,因爲我不知道如何下載不在根目錄下的其他文件夾中的最新文件。我想要的只是根中的文件。這是獲得文件和下載網址的代碼如下:Google驅動器休息API,僅從根文件夾下載文件
public static void startDownload() throws IOException, ParseException {
Drive serv = getDriveService();
FileList result = serv.files().list().setMaxResults(10).execute(); //there are 10 files in the root folder
List<File> listA = result.getItems();
if (listA == null || listA.isEmpty()) {
System.out.println("No files found.");
} else {
System.out.println("Files:"+lista.size());
for (File file : listA) {
System.out.printf("%s (%s)\n", file.getTitle(), file.getDownloadUrl());
downloadFile(serv, file);
}
}
}
我想下載的所有文件在根文件,而不是在任何其它文件夾。任何幫助,將不勝感激。