|  | 
Chilkat  HOME  Android™  AutoIt  C  C#  C++  Chilkat2-Python  CkPython  Classic ASP  DataFlex  Delphi DLL  Go  Java  Node.js  Objective-C  PHP Extension  Perl  PowerBuilder  PowerShell  PureBasic  Ruby  SQL Server  Swift  Tcl  Unicode C  Unicode C++  VB.NET  VBScript  Visual Basic 6.0  Visual FoxPro  Xojo Plugin
| (DataFlex) Upload Multiple Files Matching PatternThe MPutFiles method can be called to upload all files matching a wildcarded filename pattern from a local filesystem directory. 
 Use ChilkatAx-win32.pkg Procedure Test Handle hoFtp Boolean iSuccess Integer iNumFilesUploaded String sTemp1 // 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 | ||||
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.