I'm trying to figure out the basics of the google drive api for a project that will kick off soon.
However, the drive.file.list().execute()
only returns the files that were uploaded by the api. (e.g. the txt file i pushed to the drive to test)
None of the files in the drive that were uploaded manually are returned in the FilesList.
String pageToken = null;
Drive.Files.List qry = drive.files().list();
FileList list = qry.execute();
The list only contains the two files that were uploaded by the api.
Tried finding a solution online, but could not find a similar situation.
There are no errors, only the warnings for being unable to set the permissions.
this thread claims that this warning is because I am on a windows system.