Search found 5 matches

by JCD19
10 Apr 2023, 09:21
Forum: Cobian Reflector
Topic: Does Reflector truly replace good backups with empties?
Replies: 4
Views: 705

Re: Does Reflector truly replace good backups with empties?

Wouldn't it be better to distinguish in the history between empty backups (0 bytes) and backups where there was an error.
The backups with errors should not influence the different counters triggering actions on the backups (deleting the oldest backups, log files, etc.).
by JCD19
07 Apr 2023, 08:27
Forum: Cobian Reflector
Topic: Separate files not included in backup?
Replies: 10
Views: 7369

Re: Separate files not included in backup?

The problem may be that your backup folder in the file tab (K:\Documenten) has the same name as the original folder of the files. Try a name that is representative of the content (K:\Documenten_BkUp) I do not see the timestamp either in the samples you wrote for your backups ? A suggestion for Cobia...
by JCD19
03 Apr 2023, 17:38
Forum: Cobian Reflector
Topic: Exclude mask does not seem to work on folders
Replies: 3
Views: 2167

Re: Exclude mask does not seem to work on folders

Following my experience I give you this information : 1 - The RegEx Mask must match with the whole path of the file to be excluded 2 - the whole path (ex c:\abv\yut\Stf_folder\fileName) looks like path to the parent folder of the folder containing the file >>>> as you want all the different path pos...
by JCD19
01 Apr 2023, 19:41
Forum: Cobian Reflector
Topic: Exclude Directories
Replies: 11
Views: 1768

Re: Exclude Directories

if you want to include the files that are in a directory ending with .lrdata, but exclude all the subfolders of this directory, try

.*\\.*\.lrdata\\(?:[^\\]*\\)+.*

also check the 'delete empty folders' option

if the name of the directory is dossier the regex is :

.*\\dossier\\(?:[^\\]*\\)+.*
by JCD19
01 Apr 2023, 09:59
Forum: Cobian Reflector
Topic: Exclude Directories
Replies: 11
Views: 1768

Re: Exclude Directories

Have you tried the Regex expression : .*\\.*\.lrdata\\.* the content of the .lrdata folder will be excluded, but the .lrdata will remain in the backup, empty If you want it to be removed also and you do'nt want to check the option (delete empty folders) try this expression .*\\(?:.*\.lrdata\\.*)|(?:...