Sample code for 30+ languages & platforms
Xojo Plugin

Reassemble a Previously Split File

Demonstrates how to reassemble a previously split file.

Chilkat Xojo Plugin Downloads

Xojo Plugin
Dim success As Boolean
success = False

Dim fac As New Chilkat.FileAccess

// Any type of file may be reassembled.  It doesn't matter if it's
// a binary file or a text file.
Dim reassembledFilename As String
reassembledFilename = "hamlet2.xml"

Dim partPrefix As String
partPrefix = "hamlet"
Dim partExtension As String
partExtension = "spl"
Dim srcDirPath As String
srcDirPath = "."

// Reassembles the original file from hamlet1.spl, hamlet2.spl, ...
success = fac.ReassembleFile(srcDirPath,partPrefix,partExtension,reassembledFilename)

If (success = True) Then
    System.DebugLog("Success.")
Else
    System.DebugLog(fac.LastErrorText)
End If