I trying to retrieve a complete list of files from a given directory with code like this
uri = '%s' % fentry.content.src
feed = gd_client.GetDocumentListFeed(uri=uri)
for r in feed.entry:
print r.title.text.decode("utf-8")
It works except that it only return "real" Google Documents files and does not return files, which were uploaded but not converted, e.g. *.docx files.
Is there any way to get complete list of files in given directory?