New Sync using dropbox
Posted: June 20th, 2017, 11:51 am
I know you can copy this example below. The words in red are my questions.
// connect to Dropbox
if syncconnect(Dropbox) then
// get the latest versions of the application files from Dropbox
syncfile(GET,"/MyApp/MyApp.pff");
The "GET" means to get the this file from the server in a folder call my app?
syncfile(GET,"/MyApp/MyApp.pen");
// send the latest cases to Dropbox
syncdata(PUT,SURVEY_DICT);
syncdisconnect();
endif;
// connect to Dropbox
if syncconnect(Dropbox) then
// get the latest versions of the application files from Dropbox
syncfile(GET,"/MyApp/MyApp.pff");
The "GET" means to get the this file from the server in a folder call my app?
syncfile(GET,"/MyApp/MyApp.pen");
// send the latest cases to Dropbox
syncdata(PUT,SURVEY_DICT);
syncdisconnect();
endif;