When save or save all or auto save, how can i get list of files which saved

When i am saving a file i want to get list of files which save using API. Can any one help me.

0
1 comment

Like this...

 MessageBus bus = ApplicationManager.getApplication().getMessageBus();
MessageBusConnection connection = bus.connect();
connection.subscribe(AppTopics.FILE_DOCUMENT_SYNC, new FileDocumentManagerListener() {...});
0

Please sign in to leave a comment.