Search found 1684 matches

by tobias
Fri May 13, 2022 9:10 pm
Forum: Windows Topics
Topic: syncovery file names
Replies: 3
Views: 2656

Re: syncovery file names

Hello, this can be done with PascalScript. Or you can let Syncovery scan all folders in sftp://ftps.xxxxx.com/xxxx looking for the subfolder xxxxxxxx. To do that, put xxxxxxxx in the Folder Masks via the checkbox "Folder Masks" on the Inclusion Masks tab sheet. A PascalScript could determine the act...
by tobias
Thu May 12, 2022 9:38 pm
Forum: Windows Topics
Topic: syncovery file names
Replies: 3
Views: 2656

Re: syncovery file names

Hello,
you can use variables to construct your path, please see

https://www.syncovery.com/variables/

If the necessary variable does not exist, the path can be created with a PascalScript, please see

https://www.syncovery.com/pascalscript/

Let me know if questions remain!
by tobias
Thu May 12, 2022 1:31 pm
Forum: Syncovery on Linux, FreeBSD and NAS Devices
Topic: Error log using Syncovery on Synology NAS
Replies: 1
Views: 3753

Re: Error log using Syncovery on Synology NAS

Hello, I think you need to delete the cache database for this profile. The path is shown in the log file. Make sure you delete only the job related database in the Database folder, not the main Syncovery.cfg! The database folder can be something like this: /volume1/@appdata/Syncovery/Database/ Since...
by tobias
Thu May 12, 2022 8:18 am
Forum: Windows Topics
Topic: Copy into run-named subfolders always copies everything
Replies: 2
Views: 2487

Re: Copy into run-named subfolders always copies everything

Hello, you need to use the Archive Flag filters to avoid re-copying. These are under "Masks & Filters" -> "General Filters". You need both checkmarks. It is possible to use subfolders based on the files' modification date with a PascalScript, but not trivial. Replacing modified files would only be p...
by tobias
Wed May 11, 2022 9:15 pm
Forum: Windows Topics
Topic: Pascal Script Help
Replies: 1
Views: 2454

Re: Pascal Script Help

Hello, here's a script that removes everything between a hyphen and the filename extension (and removes the hypen itself too). If your filenames might contain hyphens other than just before and within the timestamp, then the script would need to be modified. Just let me know. function OnReplaceFilen...
by tobias
Wed May 11, 2022 8:26 am
Forum: Cloud Storage Related Topics
Topic: Trying to copy files from Google Drive to OneDrive
Replies: 8
Views: 12818

Re: Trying to copy files from Google Drive to OneDrive

Maybe it would work in a different browser? You can copy and paste the first URL to another browser and try it there.
by tobias
Wed May 11, 2022 8:01 am
Forum: Cloud Storage Related Topics
Topic: Trying to copy files from Google Drive to OneDrive
Replies: 8
Views: 12818

Re: Trying to copy files from Google Drive to OneDrive

Hello,
unfortunately this is an error on the Google servers, maybe you can contact Google support or just try again in a few days?

It works fine with my own Google Drive account. So far there haven't been any similar reports.
by tobias
Tue May 10, 2022 8:05 pm
Forum: Cloud Storage Related Topics
Topic: Trying to copy files from Google Drive to OneDrive
Replies: 8
Views: 12818

Re: Trying to copy files from Google Drive to OneDrive

Hello,
which Syncovery version are you using, and on which type of computer?

Can you post a screenshot of the URL and message that you end up with?
by tobias
Mon May 09, 2022 10:20 pm
Forum: Syncovery on Linux, FreeBSD and NAS Devices
Topic: rsync support in QNAP version
Replies: 4
Views: 3503

Re: rsync support in QNAP version

Hello, yes, block-level copying is supported via SSH/SFTP. If you just "push" data (upload via SFTP), then there isn't any remote module needed. You can just choose "Block Level Copying" on the Special tab sheet in the profile, using "Checksums". See also https://www.syncovery.com/block-level-copyin...
by tobias
Mon May 09, 2022 9:40 pm
Forum: Syncovery on Linux, FreeBSD and NAS Devices
Topic: rsync support in QNAP version
Replies: 4
Views: 3503

Re: rsync support in QNAP version

Hello, rsync is only available in the Windows edition of Syncovery. I recommend using SSH/SFTP as a replacement. In contrast to rsync, SFTP is a documented protocol that is supported by Syncovery very well. rsync, on the other hand, is just a tool and not a documented protocol, therefore hard to imp...