Sample code for 30+ languages & platforms
Visual FoxPro

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 Visual FoxPro Downloads

Visual FoxPro
LOCAL lnSuccess
LOCAL loFtp
LOCAL lnNumFilesUploaded

lnSuccess = 0

* This example requires the Chilkat API to have been previously unlocked.
* See Global Unlock Sample for sample code.

loFtp = CreateObject('Chilkat.Ftp2')

loFtp.Hostname = "ftp.example.com"
loFtp.Username = "my_login"
loFtp.Password = "my_password"

* Connect and login to the FTP server.
lnSuccess = loFtp.Connect()
IF (lnSuccess <> 1) THEN
    ? loFtp.LastErrorText
    RELEASE loFtp
    CANCEL
ENDIF

* Change to the remote directory where the files will be uploaded.
* for the FTP account.
lnSuccess = loFtp.ChangeRemoteDir("junk")
IF (lnSuccess <> 1) THEN
    ? loFtp.LastErrorText
    RELEASE loFtp
    CANCEL
ENDIF

* Upload all files with filenames matching "c:/temp/ftp_*.asp"
lnNumFilesUploaded = loFtp.MPutFiles("c:/temp/ftp_*.asp")
IF (lnNumFilesUploaded < 0) THEN
    ? loFtp.LastErrorText
    RELEASE loFtp
    CANCEL
ENDIF

lnSuccess = loFtp.Disconnect()

? STR(lnNumFilesUploaded) + " Files Uploaded!"

RELEASE loFtp