For information about Globalscape, visit www.globalscape.com. |
Use the CombSupport property to check if the server supports the COMB (multi-part upload) command.
Syntax
Boolean Object.CombSupport
Return values
-1 |
Server supports COMB |
0 |
Server does not support COMB |
Example
Set MySite = CreateObject("CuteFTPPro.TEConnection")
'Initialize all necessary fields for MySite : host name, user, password, etc.
If (not MySite.CombSupport) Then
MsgBox "This server doesn't support the COMB command!"
End if