Skip to content

achatain/google-drive-stream

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Google Drive Stream

https://github.com/achatain/google-drive-stream

Build Status

Provides Java Streams for the Google Drive API ✨

Drive client = new Drive(...);

new GoogleDriveStream(client)
        .files()
        .filter(file -> file.getSize() > 4096L)
        .forEach(file -> log.info(file.getName()));