Not sure I understand your request, but the library does not offer an automatic "split" feature, unless you use a zip archive, which can be split when created.
If you are not using a zip archive, you could manage this yourself, on the local side. That is, when uploading a file, send it through a stream where you stream part of the file to the server so that it becomes a complete file on it, then stream the other part to the server to another file. You can use the SendFile() overload that takes a stream as a parameter.
When downloading these files locally from the server, you can stream the splited files into the same file through the ReceiveFile() overload that as the append parameter, and indicate whether it should append to the local file or overwrite it.
André
Software Developer and Tech Support
Xceed Software Inc.