DataFlex
DataFlex
Upload Multiple FTP Files by Wildcard (MPUT)
See more FTP Examples
Demonstrates the Chilkat Ftp2.MPutFiles method, which uploads each local file matching a pattern to the current remote directory. The only argument is the local pattern, which may include a directory and wildcard. It returns the number of files uploaded, or -1 on failure.
Note: The local paths are relative to the application's current working directory. Absolute paths may also be used. Supply the paths appropriate to your own environment.
Background: The upload counterpart to
MGetFiles — FTP's mput. The wildcard is matched against the local filesystem, and every match is sent to the current remote directory; subdirectories are not traversed, so use PutTree for a recursive upload. As with MGetFiles, the return distinguishes a genuine failure (-1) from simply matching nothing.Chilkat DataFlex Downloads
Use ChilkatAx-win32.pkg
Procedure Test
Boolean iSuccess
Handle hoFtp
Integer iNumUploaded
String sTemp1
Move False To iSuccess
// Demonstrates the Ftp2.MPutFiles method, which uploads each local file matching a pattern to the
// current remote directory. The only argument is the local pattern (which may include a
// directory and wildcard). It returns the number of files uploaded, or -1 on failure.
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 "myFtpLogin"
// Normally you would not hard-code the password in source. You should instead obtain it
// from an interactive prompt, environment variable, or a secrets vault.
Set ComPassword Of hoFtp To "myPassword"
Get ComConnect Of hoFtp To iSuccess
If (iSuccess = False) Begin
Get ComLastErrorText Of hoFtp To sTemp1
Showln sTemp1
Procedure_Return
End
Get ComChangeRemoteDir Of hoFtp "public_html" To iSuccess
If (iSuccess = False) Begin
Get ComLastErrorText Of hoFtp To sTemp1
Showln sTemp1
Procedure_Return
End
// Upload all .html files from a local directory. Subdirectories are not traversed.
Get ComMPutFiles Of hoFtp "qa_data/site/*.html" To iNumUploaded
If (iNumUploaded < 0) Begin
Get ComLastErrorText Of hoFtp To sTemp1
Showln sTemp1
Procedure_Return
End
Showln "Uploaded " iNumUploaded " files."
Get ComDisconnect Of hoFtp To iSuccess
If (iSuccess = False) Begin
Get ComLastErrorText Of hoFtp To sTemp1
Showln sTemp1
Procedure_Return
End
End_Procedure