Search found 7 matches

by wolfcry
14 Nov 2013, 02:23
Forum: General Discussion
Topic: Q: for "Mirror" sync- Can I stop FFS from creating sync.ffs_lock?
Replies: 1
Views: 541

Q: for "Mirror" sync- Can I stop FFS from creating sync.ffs_lock?

Hello,

Is is possible for FFS not to create sync.FFS_lock on the source folder if "Mirror" is needed? After all, it is a read-only for the source folder.

As I am using a Sharepoint, creating a file on the network will trigger the folder owner an alert. I would like to avoid that. Thanks!
by wolfcry
21 Nov 2012, 05:36
Forum: General Discussion
Topic: Keep previous versions of files
Replies: 95
Views: 15383

Re: Keep previous versions of files

For your first problem, you may like to consider setting two set of sync with both the same source and target folders. You can limit the first set to file size less than a certain size and limit the version to, say 50. You can then limit the second set to file size greater than a certain size and li...
by wolfcry
25 Oct 2012, 01:52
Forum: General Discussion
Topic: Relating to Versioning
Replies: 7
Views: 1181

Re: Relating to Versioning

I believe you can still do versioning by folder by using macros. Try to append the below to your current delete folder

%date% %time%\

If we can get a script to remove the data/time information that is inserted by ver 5.8, we are back to per-5.8 ways of handling versioning
by wolfcry
05 Sep 2012, 07:48
Forum: General Discussion
Topic: Keep previous versions of files
Replies: 95
Views: 15383

Re: Keep previous versions of files

Looks like I am late to the party... I have created a script that purge the deleted folder based on X copies, and maintain a minimum time gap between copies. The is defined by the below command: TimeGaps=Array(1,2,3,4,8,16,32,90) ‘ Array that define the time gaps for the backup copies ' Default to: ...
by wolfcry
12 Oct 2010, 16:15
Forum: General Discussion
Topic: Any suggestion to use FFS as backup to S3
Replies: 0
Views: 1324

Any suggestion to use FFS as backup to S3

As above, with encryption. Thanks in advance.
by wolfcry
12 Oct 2010, 15:49
Forum: General Discussion
Topic: Manage files deleted to user-defined folders
Replies: 1
Views: 5895

Re: Manage files deleted to user-defined folders

Hopefully, the below loos better. --------------- Option explicit Dim NoOfCopies Dim MinTimeGapBetweentCopies Dim TimeGapStep ' This script compliment FreeFileSync to purge the files deleted to user- defined directory. ' Credit to http://sogeeky.blogspot.com/2006/08/vbscript-using-disconnected-recor...
by wolfcry
12 Oct 2010, 15:45
Forum: General Discussion
Topic: Manage files deleted to user-defined folders
Replies: 1
Views: 5895

Manage files deleted to user-defined folders

Hi, Many thanks for this excellent program. I use it as a backup program; files "deleted" to user-defined folders is a form of versioning. In order to manage the deleted file, I wrote the below script that would deleted files from the user-defined delete folders based on 1. The number of c...