gilbertchen

Results 102 comments of gilbertchen

> Enumerate all files and folders within the repository. I am against that. If there is a large directory to be excluded then you'll always waste time listing all files...

I misunderstood what `FindString` does. What I wanted is a function that can tell if the path is a partial match of the pattern. That is, the path as given...

The problem is, you'll never know how many chunks need to be uploaded. It is either too optimistic or too pessimistic. The current stats is too optimistic, but if most...

I'll vote for the small window approach.

I jus tested a password of 360 characters and it worked as expected. There is not limit on the password length. The password is passed to pbkdf2 to generate the...

The best way to debug the issue is to add a line in that `GenerateKeyFromPassword` function to print out the password passed in (and maybe the returned encryption key as...

You can provide a non-empty dummy key file that points to a non-existing file: ``` export DUPLICACY_TEST_SFTP_SSH_KEY_FILE=xxxxx ``` The agent-based authentication is tried first, so if it succeeds Duplicacy won't...

This issue has been mentioned on **Duplicacy Forum**. There might be relevant details there: https://forum.duplicacy.com/t/read-wiki-and-am-definitely-moving-here-have-3-questions/6618/14

This issue has been mentioned on **Duplicacy Forum**. There might be relevant details there: https://forum.duplicacy.com/t/duplicacy-and-btrfs-snapshots/6619/10

According to Danny at the duplicacy.com forum this is likely to be caused by an old aws-sdk-go version: https://duplicacy.com/issue?id=5666823336886272. I also checked in https://github.com/gilbertchen/duplicacy/commit/8808ad5c28ada2562ce6baf6504e7935a527f166 to retry on this error. The...