Page 1 of 1

Dropbox Synchronization Default Folder

Posted: July 24th, 2019, 10:13 am
by munirmdee1
Hi Everyone,

I have a little concern about the synchronization in dropbox, actually it works fine, except that it creates CSPro folder in Dropbox account where I synchronize the data. And inside it, is where all application files are kept like dictionary and others.

I don't want to use the default Folder which is CSPro, I would like to name my own folder like "Energy" or else.

How do I change this default folder to my own...which is "Energy"?

My syntax are:

Code: Select all

function senddata()
	 	if syncconnect(Dropbox) then
	 		if syncdata(PUT,SYNCH) then
	 			errmsg("DATA SENT SUCCESSFUL!!...");
	 			Stop(-1);
	 		else
	 			errmsg("DATA NOT SENT, CHECK CONNECTION!!..");
	 			Stop(-1);
	 		endif;
	 	else
	 		errmsg("CONNECTION TO THE SERVER FAILED!!..");
	 		Stop(-1);
	 	endif;
	 end;
Thanks in Advance.

Re: Dropbox Synchronization Default Folder

Posted: July 24th, 2019, 1:06 pm
by josh
It is not possible to change the folder used by syncdata(). It always uses the folder CSPro.

Re: Dropbox Synchronization Default Folder

Posted: July 25th, 2019, 4:06 am
by munirmdee1
Ok,

Thanks Josh