我在谷歌搜索,但我沒有找到任何可以真正幫助我。
我測試了一些代碼。Android | Google Drive |顯示文件夾中的文件
一個測試是這樣的:Get list of files from a specific folder in google drive但它只顯示3個文件/文件夾(在// md gives you the file info
中,我已經添加了md.getTitle()
)或者什麼也不是,我不知道爲什麼。
然後我試着用這個:https://github.com/googledrive/android-demos/blob/master/app/src/main/java/com/google/android/gms/drive/sample/demo/ListFilesInFolderActivity.java,改變了最後一種方法。我已經使用了MetadataBufferResult result
這樣:
MetadataBuffer metadataBuffer = result.getMetadataBuffer();
Log.d("DRIVE","size: "+metadataBuffer.getCount());
metadataBuffer.release();
與「大小」就像previus測試:它是3,0或1,但也有更多的文件夾/文件。
如何在一個文件夾中列出全部文件?你給我一個例子嗎?
我這個https://developers.google.com/drive/v3嘗試/參考/文件/列表#試試它,但我可以把「Q」字段? –