2016-12-24 73 views
0

我正在寫一個Dropbox控制檯應用程序。我需要找到我的帳戶的最後修改。我能得到的文件元數據與上次修改的日期,就像這樣:使用Java API的Dropbox最後修改

DbxEntry.WithChildren listing = client.getMetadataWithChildren(path); 
for (DbxEntry child : listing.children) { 
    System.out.println(" " + child.name + ": " + child.toString()); 

} 

但我怎麼能找到我所有的文件夾的最新修改?

回答