Chilkat
HOME
Android™
ASP
Visual Basic
VB.NET
C#
iOS (IPhone)
Objective-C
C++
C
MFC
Delphi
FoxPro
Java
Perl
PHP Extension
PHP ActiveX
Python
PowerShell
Ruby
SQL Server
VBScript
Delete Files on FTP Server Matching a Wildcard Pattern
Demonstrates how to delete all files matching a wildcard pattern from the current directory on an FTP server.
set ftp = CreateObject("Chilkat.Ftp2")
ftp.UnlockComponent "any string begins the 30-day trial"
ftp.Username = "***"
ftp.Password = "***"
ftp.Hostname = "ftp.***.com"
ok = ftp.Connect()
if (ok <> 1) then
MsgBox ftp.LastErrorText
end if
numFilesDeleted = ftp.DeleteMatching("x*.zip")
if (numFilesDeleted = -1) then
MsgBox ftp.LastErrorText
end if
MsgBox numFilesDeleted
|
© 2000-2010 Chilkat Software, Inc. All Rights Reserved.