Dropbox sync with windows

Discussions about syncing data via Bluetooth, Dropbox, FTP, and using CSWeb
Forum rules
New release: CSPro 8.0
edwinfeliz
Posts: 4
Joined: January 19th, 2017, 10:56 am

Re: Dropbox sync with windows

Post by edwinfeliz »

The first time I config sync with dropbox was successful and syncronization works, just the first time, never again i was unable to sync my files with dropbox in windows.

The next time that i try to sync, im getting this error:

Image

Im running windows 8.1 with internet explorer 11.
CSpro version 7.0.2.

This is my synchronization script:

Code: Select all

  function Sincronizar( )
     // connect to Dropbox
    if syncconnect(Dropbox) then

    // get the latest versions of the application files from Dropbox
    syncfile(GET,"/RDS_2017/Menu.pff");
    syncfile(GET,"/RDS_2017/EntryTRSX.pen");
    syncfile(GET,"/RDS_2017/EntryGTH.pen");
    syncfile(GET,"/RDS_2017/Menu.pen");

    // send the latest cases to Dropbox
    syncfile(PUT,"C:\RDS_2017\Data\C*.dat","/RDS_2017");
    syncfile(PUT,"C:\RDS_2017\Veri\V*.dat","/RDS_2017");
    syncfile(PUT,"C:\RDS_2017\Docz\Cupones*.xlsx","/RDS_2017/Cupones");
    syncdisconnect();

    endif;
  end;
josh
Posts: 2399
Joined: May 5th, 2014, 12:49 pm
Location: Washington DC

Re: Dropbox sync with windows

Post by josh »

To download the beta you can go to http://www.csprousers.org/beta/

That error means that the file Dropbox/RDS_2017/Menu.pff is missing from your Dropbox.

Josh
edwinfeliz
Posts: 4
Joined: January 19th, 2017, 10:56 am

Re: Dropbox sync with windows

Post by edwinfeliz »

josh wrote:To download the beta you can go to http://www.csprousers.org/beta/

That error means that the file Dropbox/RDS_2017/Menu.pff is missing from your Dropbox.

Josh
Im pretty sure that the files exist in that directory. And im still getting this error.
Image
josh
Posts: 2399
Joined: May 5th, 2014, 12:49 pm
Location: Washington DC

Re: Dropbox sync with windows

Post by josh »

Make sure you have the right Dropbox. You could be logged into a different one. Also make sure the case (upper/lower) is correct when you specify the filename. It matters with Dropbox.
ctpacheco
Posts: 3
Joined: November 10th, 2021, 8:11 am
Location: Rio de Janeiro - Brazil

Re: Dropbox sync with windows

Post by ctpacheco »

Hi,
I would like to know if there is a way to send all the questionnaires and not just the last ones filled using the command "PUT" with the DROPBOX?
Thanks
Carlos
Gregory Martin
Posts: 1777
Joined: December 5th, 2011, 11:27 pm
Location: Washington, DC

Re: Dropbox sync with windows

Post by Gregory Martin »

Syncdata will send up any questionnaires that have been modified since the last sync, so you will get your desired behavior by default.
Post Reply