stefankueng/CryptSync

Feature request: Add option to split files that are larger than 4 GiB

ottsimon opened this issue · 2 comments

Background: My Cloud-Provider only supports WebDav to access files without the official sync-client. But WebDav cannot transfer files, that are larger than 4 GiB.

It would be nice to have an option to split the files, before putting them into the encrypted folder.

+1
(especially as it's only a command line parameter to the 7z module so I guess it's the same in case CS calls an API)
-v{SizeInByte}

command line would look like
7z.exe a -t7z -v2000000000 MyArchive.7z MySourceFiles
to split into 2GB archives.

Since CryptSync no longer uses the 7z.exe to do the work, this will be a lot of work (not just passing another command line parameter), and IMHO it would get very messy: then there isn't a 1:1 correlation anymore between original and encrypted files but multiple encrypted files corresponding to only one original file.