Does anyone know if there is capability in RDNG which allows folders to be synced with local folder on laptops? Like onedrive or dropbox
2 answers
If you can do Java programming and are familiar with DNG REST API, you should be able to use the file change notification API (Watch Service API) to achieve what you want.
http://docs.oracle.com/javase/tutorial/essential/io/notification.html
The Watch Service API enables us to detect file creation, file deletion and file modification in a directory.
Once one of the event is triggered, you can call DNG REST API to update the corresponding artifacts in DNG.
http://docs.oracle.com/javase/tutorial/essential/io/notification.html
The Watch Service API enables us to detect file creation, file deletion and file modification in a directory.
Once one of the event is triggered, you can call DNG REST API to update the corresponding artifacts in DNG.
I don't think so. When you say "sync", does it mean one-way (download only) or two-way? RDNG does not have any "real" client on the client machine other than the browser, and what application do you expect to execute the "sync" action?
Comments
1 vote