DataFlex
DataFlex
Upload Multiple Files Matching Pattern
See more FTP Examples
The MPutFiles method can be called to upload all files matching a wildcarded filename pattern from a local filesystem directory.Chilkat DataFlex Downloads
Use ChilkatAx-win32.pkg
Procedure Test
Boolean iSuccess
Handle hoFtp
Integer iNumFilesUploaded
String sTemp1
Move False To iSuccess
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
Get Create (RefClass(cComChilkatFtp2)) To hoFtp
If (Not(IsComObjectCreated(hoFtp))) Begin
Send CreateComObject of hoFtp
End
Set ComHostname Of hoFtp To "ftp.example.com"
Set ComUsername Of hoFtp To "my_login"
Set ComPassword Of hoFtp To "my_password"
// Connect and login to the FTP server.
Get ComConnect Of hoFtp To iSuccess
If (iSuccess <> True) Begin
Get ComLastErrorText Of hoFtp To sTemp1
Showln sTemp1
Procedure_Return
End
// Change to the remote directory where the files will be uploaded.
// for the FTP account.
Get ComChangeRemoteDir Of hoFtp "junk" To iSuccess
If (iSuccess <> True) Begin
Get ComLastErrorText Of hoFtp To sTemp1
Showln sTemp1
Procedure_Return
End
// Upload all files with filenames matching "c:/temp/ftp_*.asp"
Get ComMPutFiles Of hoFtp "c:/temp/ftp_*.asp" To iNumFilesUploaded
If (iNumFilesUploaded < 0) Begin
Get ComLastErrorText Of hoFtp To sTemp1
Showln sTemp1
Procedure_Return
End
Get ComDisconnect Of hoFtp To iSuccess
Showln iNumFilesUploaded " Files Uploaded!"
End_Procedure