大家好我在我的应用程序中使用google-api-client gem我想获取文件夹中所有图像的列表我该如何实现它。这是我的代码,只能在第一页上获取所有文件的列表。
require 'google/apis/drive_v2'
require 'signet/oauth_2/client'
require 'googleauth'
Drive = Google::Apis::DriveV2 # Alias the module
drive = Drive::DriveService.new
drive.authorization = authorization
files = drive.list_files
请让我知道如何获取文件夹中所有文件的列表。就像我有一个名为'test_folder'的文件夹,我在该文件夹中有一些文件现在我想得到所有文件的列表。 请帮我。
答案 0 :(得分:0)
这里给出了一个镜头。
service = Google::Apis::DriveV2::DriveService.new
service.client_options.application_name = APPLICATION_NAME
service.authorization = authorize
# List the 10 most recently modified files.
response = service.list_files()
puts 'Files:'
puts 'No files found' if response.items.empty?
response.items.each do |file|
puts "#{file.title} (#{file.id})"
end
有关详细信息,请参阅documentation